Skip to content

Commit bf61820

Browse files
committed
aws ecr terraform
1 parent 9fdb3a0 commit bf61820

File tree

1 file changed

+2
-2
lines changed
  • ansible/roles/deploy-ecs-proxies/templates/terraform

1 file changed

+2
-2
lines changed

ansible/roles/deploy-ecs-proxies/templates/terraform/locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ locals {
4545

4646
ecs_service = [
4747
{% for container in ecs_service %}
48+
{% raw %}
4849
{{
4950
(
5051
container
@@ -53,17 +54,16 @@ ecs_service = [
5354
'image':
5455
'${local.account_id}.dkr.ecr.eu-west-2.amazonaws.com/'
5556
+ service_id + '_' + container.name
56-
{% raw %}
5757
+ (
5858
var.use_ecs_tag && container.name == "canary_canary-api"
5959
? ":ecs-${build_label}"
6060
: ":${build_label}"
6161
)
62-
{% endraw %}
6362
}
6463
)
6564
) | to_json
6665
}},
66+
{% endraw %}
6767
{% endfor %}
6868
]
6969

0 commit comments

Comments
 (0)