From 6097839ca66b1547f00016646849fca43d7e7d99 Mon Sep 17 00:00:00 2001 From: Jon Calalang Date: Thu, 2 Nov 2023 11:34:59 -0700 Subject: [PATCH] need vars to loop for fast --- big-ip/terraform/configuration/fastApplications.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/big-ip/terraform/configuration/fastApplications.tf b/big-ip/terraform/configuration/fastApplications.tf index 43dd5acd..cf11cb1f 100644 --- a/big-ip/terraform/configuration/fastApplications.tf +++ b/big-ip/terraform/configuration/fastApplications.tf @@ -3,7 +3,7 @@ # HTTP Application resource "bigip_fast_application" "http-manifest" { for_each = fileset(path.module, "applications/fast/http/**.tpl") - fast_json = templatefile("${path.module}/${each.key}") + fast_json = templatefile("${path.module}/${each.key}", { monitor_passphrase = var.ad_service_ldap_password }) template = "bigip-fast-templates/http" }