This website requires JavaScript.
Explore
Cloud
Chat
CI/CD
Help
Sign In
cmueller
/
ansible
Watch
1
Star
0
Fork
You've already forked ansible
0
Code
Issues
Pull requests
Projects
Releases
Wiki
Activity
918d1e038e
ansible
/
test
/
integration
/
roles
/
test_template
/
templates
/
foo.j2
4 lines
57 B
Text
Raw
Normal View
History
Unescape
Escape
Add basic template test
2014-02-19 20:54:45 +01:00
{{ templated_var }}
Don't convert numbers and booleans to strings. Before this change if a variable was of type int or bool and the variable was referenced by another variable, the type would change to string. eg. defaults/main.yml ``` PORT: 4567 OTHER_CONFIG: secret1: "so_secret" secret2: "even_more_secret" CONFIG: hostname: "some_hostname" port: "{{ PORT }}" secrets: "{{ OTHER_CONFIG }}" ``` If you output `CONFIG` to json or yaml, the port would get represented in the output as a string instead of as a number, but secrets would get represented as a dictionary. This is a mis-match in behaviour where some "types" are retained and others are not. This change should fix the issue. Update template test to also test var retainment. Make the template changes in v2. Update to only short-circuit for booleans and numbers. Added an entry to the changelog.
2015-03-14 21:26:48 +01:00
{{ templated_dict | to_nice_json }}
Reference in a new issue
Copy permalink