Skip to content

Commit 14696bb

Browse files
committed
removing print statements and update terraform condition
1 parent 1b9f116 commit 14696bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ecs_service = [
5151
+ service_id + '_' + container.name
5252
+ (
5353
":ecs-" + build_label
54-
if use_ecs_tag and container.name == "cnary-api"
54+
if use_ecs_tag and container.name == "canary-api"
5555
else ":" + build_label
5656
)
5757
)

azure/templates/deploy-service.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ steps:
243243
244244
245245
if [[ "$SERVICE_BASE_PATH_FOR_CONDITION" == *"-pr-"* ]]; then
246-
export TF_VAR_use_ecs_tag=true
247-
else
248246
export TF_VAR_use_ecs_tag=false
247+
else
248+
export TF_VAR_use_ecs_tag=true
249249
fi
250250
251251
echo "DEBUG: TF_VAR_use_ecs_tag='${TF_VAR_use_ecs_tag}'"

0 commit comments

Comments
 (0)