We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fdb3a0 commit bf61820Copy full SHA for bf61820
ansible/roles/deploy-ecs-proxies/templates/terraform/locals.tf
@@ -45,6 +45,7 @@ locals {
45
46
ecs_service = [
47
{% for container in ecs_service %}
48
+{% raw %}
49
{{
50
(
51
container
@@ -53,17 +54,16 @@ ecs_service = [
53
54
'image':
55
'${local.account_id}.dkr.ecr.eu-west-2.amazonaws.com/'
56
+ service_id + '_' + container.name
- {% raw %}
57
+ (
58
var.use_ecs_tag && container.name == "canary_canary-api"
59
? ":ecs-${build_label}"
60
: ":${build_label}"
61
)
62
- {% endraw %}
63
}
64
65
) | to_json
66
}},
+{% endraw %}
67
{% endfor %}
68
]
69
0 commit comments