Skip to content

Commit

Permalink
adds escapes for heredoc to compose
Browse files Browse the repository at this point in the history
  • Loading branch information
theoskolnik committed Mar 28, 2024
1 parent d12270a commit 71eee64
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 @@ -151,7 +151,7 @@ module "runtime_container_engine_config" {

database_name = local.database.name
database_user = local.database.username
database_password = local.database.password
database_password = replace(local.database.password, "$", "\\$\\$")
database_host = local.database.endpoint
database_parameters = local.database.parameters

Expand Down

0 comments on commit 71eee64

Please sign in to comment.