Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Commit

Permalink
Fix vault container name in dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
iuriaranda committed Feb 16, 2022
1 parent 4a01ba3 commit 2be1052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecs-web/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ data "template_file" "concourse_web_task_template" {
db_container_dependency = var.auto_create_db ? ",{ \"containerName\": \"create_db\", \"condition\": \"COMPLETE\" }" : ""
volumes_from_vault_auth = var.vault_server_url != null ? ",{ \"sourceContainer\": \"vault_auth\" }" : ""
vault_command_args = var.vault_server_url != null ? "--vault-client-token=`cat /concourse_vault/token`" : ""
vault_container_dependency = var.vault_server_url != null ? ",{ \"containerName\": \"create_db\", \"condition\": \"SUCCESS\" }" : ""
vault_container_dependency = var.vault_server_url != null ? ",{ \"containerName\": \"vault_auth\", \"condition\": \"SUCCESS\" }" : ""
concourse_extra_args = var.concourse_extra_args != null ? var.concourse_extra_args : ""
concourse_extra_env = var.concourse_extra_env != null ? join("", data.template_file.concourse_extra_env.*.rendered) : ""
concourse_default_build_logs_to_retain = var.concourse_default_build_logs_to_retain
Expand Down

0 comments on commit 2be1052

Please sign in to comment.