From 5ca5abe06c5652ad7bfb042a97c75c8ab54d3c27 Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Wed, 13 Sep 2023 10:04:01 -0400 Subject: [PATCH] Fixed indexing error left over from when kiali was optional in istio-tools. --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index e05b8fc..b9282ea 100644 --- a/main.tf +++ b/main.tf @@ -77,7 +77,7 @@ module "preinstall" { source = "git@github.it.census.gov:SOA/tfmod-config-job.git//config-job" namespace = local.ns - service_account_name = module.service_account[0].service_account_name + service_account_name = module.service_account.service_account_name job_name = "istio-tools-config-job" config_script = local.preinstall_script }