Skip to content

Commit

Permalink
fix: Auth0 SSM Base Path (#1109)
Browse files Browse the repository at this point in the history
  • Loading branch information
milldr authored Sep 9, 2024
1 parent 5582764 commit d0a5984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/auth0/app/main.tf
Original file line number Diff line number Diff line change
@@ -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)
}
Expand Down

0 comments on commit d0a5984

Please sign in to comment.