Skip to content

Commit

Permalink
Merge pull request #56 from silinternational/feature/db-pw-sensitive
Browse files Browse the repository at this point in the history
mark the database password as sensitive
  • Loading branch information
briskt authored Dec 6, 2024
2 parents 285d126 + 1c5a26c commit 501e36a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ locals {
task_def_hub = templatefile("${path.module}/task-def-hub.json", {
admin_email = var.admin_email
admin_name = var.admin_name
admin_pass = random_id.ssp_admin_pass.hex
admin_pass = sensitive(random_id.ssp_admin_pass.hex)
analytics_id = var.analytics_id
app_env = local.app_env
app_name = var.app_name
Expand Down

0 comments on commit 501e36a

Please sign in to comment.