Skip to content

Commit

Permalink
Added support for specifying additional ports and tags for the load b…
Browse files Browse the repository at this point in the history
…alancer.
  • Loading branch information
zawac002 committed Nov 1, 2023
1 parent 8029d57 commit 02d980e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,21 @@ variable "namespace" {
default = "istio-system"
}

variable "extra_listener_ports" {
description = "A list of additional ports that the ingress load balancer should listen to, 9094 for kafka as an example."
type = list(object({
name = string
port = string
}))
default = []
}

variable "tags" {
description = "Tags to be added to the load balancer in AWS."
type = map(string)
default = {}
}

# helm repo add istio https://istio-release.storage.googleapis.com/charts
# helm search repo istio/istiod
variable "istio_chart_version" {
Expand Down

0 comments on commit 02d980e

Please sign in to comment.