Skip to content

Commit

Permalink
fix: make integration secret non-sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeyheath authored Sep 15, 2023
1 parent 89e0acb commit ebb7d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .happy/terraform/modules/ecs-stack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data aws_secretsmanager_secret_version config {
}

locals {
secret = jsondecode(data.aws_secretsmanager_secret_version.config.secret_string)
secret = jsondecode(nonsensitive(data.aws_secretsmanager_secret_version.config.secret_string))
alb_key = var.require_okta ? "private_albs" : "public_albs"

custom_stack_name = var.stack_name
Expand Down Expand Up @@ -79,4 +79,4 @@ module explorer_service {
remote_dev_prefix = local.remote_dev_prefix

wait_for_steady_state = local.wait_for_steady_state
}
}

0 comments on commit ebb7d07

Please sign in to comment.