Skip to content

Commit

Permalink
Merge pull request #27 from NHSDigital/APM-1910-fix-templating-issues
Browse files Browse the repository at this point in the history
APm-1910 escape using raw
  • Loading branch information
HenryIwanejko authored Mar 23, 2021
2 parents 24f6387 + c9c819c commit 5f25139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecs-proxies-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ docker_service:
- name: NODE_ENV
value: production
- name: LOG_LEVEL
value: "{%{{ 'debug' if APIGEE_ENVIRONMENT == 'internal-dev' else 'info' }}%}"
value: "{% raw %}{{ 'debug' if APIGEE_ENVIRONMENT == 'internal-dev' else 'info' }}{% endraw %}"
- name: VERSION_INFO
value: "{%{{ version_info | to_json }}%}"
value: "{% raw %}{{ version_info | to_json }}{% endraw %}"
health_check:
matcher: "200"
path: "/_ping"

0 comments on commit 5f25139

Please sign in to comment.