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" }