This website requires JavaScript.
Explore
Help
Sign In
a-c-m
/
community.general
mirror of
https://github.com/ansible-collections/community.general.git
Watch
1
Star
0
Fork
You've already forked community.general
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
ee2e31b37a
community.general
/
test
/
integration
/
roles
/
test_template
/
templates
/
foo.j2
4 lines
57 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add basic template test
2014-02-19 19:54:45 +00: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 20:26:48 +00:00
{{ templated_dict | to_nice_json }}