Skip to content

Commit 5f25139

Browse files
Merge pull request #27 from NHSDigital/APM-1910-fix-templating-issues
APm-1910 escape using raw
2 parents 24f6387 + c9c819c commit 5f25139

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ecs-proxies-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ docker_service:
55
- name: NODE_ENV
66
value: production
77
- name: LOG_LEVEL
8-
value: "{%{{ 'debug' if APIGEE_ENVIRONMENT == 'internal-dev' else 'info' }}%}"
8+
value: "{% raw %}{{ 'debug' if APIGEE_ENVIRONMENT == 'internal-dev' else 'info' }}{% endraw %}"
99
- name: VERSION_INFO
10-
value: "{%{{ version_info | to_json }}%}"
10+
value: "{% raw %}{{ version_info | to_json }}{% endraw %}"
1111
health_check:
1212
matcher: "200"
1313
path: "/_ping"

0 commit comments

Comments
 (0)