From d0a598445ff8ee28176835264f8499e7254ecbe6 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Mon, 9 Sep 2024 16:53:34 -0400 Subject: [PATCH] fix: Auth0 SSM Base Path (#1109) --- modules/auth0/app/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auth0/app/main.tf b/modules/auth0/app/main.tf index 1e1ee4f68..294a4db55 100644 --- a/modules/auth0/app/main.tf +++ b/modules/auth0/app/main.tf @@ -1,7 +1,7 @@ locals { enabled = module.this.enabled - ssm_path = coalesce(var.provider_ssm_base_path, module.this.id) + ssm_path = coalesce(var.ssm_base_path, module.this.id) client_id_ssm_path = format("/%s/client_id", local.ssm_path) client_secret_ssm_path = format("/%s/client_secret", local.ssm_path) }