We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f733d84 commit 6e324edCopy full SHA for 6e324ed
ansible/roles/deploy-ecs-proxies/templates/terraform/locals.tf
@@ -54,7 +54,8 @@ ecs_service = [
54
'${local.account_id}.dkr.ecr.eu-west-2.amazonaws.com/'
55
+ service_id + '_' + container.name
56
+ (
57
- "{{ '${' }}var.use_ecs_tag && container.name == \"canary_canary-api\" ? \":ecs-${build_label}\" : \":${build_label}\"{{ '}' }}"
+ ":ecs-{{ build_label }}" if var.use_ecs_tag and container.name == "canary_canary-api"
58
+ else ":{{ build_label }}"
59
)
60
}
61
0 commit comments