From 02d980e7acad62dd66c19396dfdba9ea3e800117 Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Wed, 1 Nov 2023 10:47:57 -0400 Subject: [PATCH] Added support for specifying additional ports and tags for the load balancer. --- variables.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/variables.tf b/variables.tf index acd2ef9..42ec972 100644 --- a/variables.tf +++ b/variables.tf @@ -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" {