summaryrefslogtreecommitdiff
path: root/test/integration/roles/test_template/vars/main.yml
blob: 16776cb7e83aabd566c103fe7d77f18f56385e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
templated_var: templated_var_loaded

number_var: 5
string_num: "5"
bool_var: true
part_1: 1
part_2: "Foo"
null_type: !!null

templated_dict:
  number: "{{ number_var }}"
  string_num: "{{ string_num }}"
  null_type: "{{ null_type }}"
  bool: "{{ bool_var }}"
  multi_part: "{{ part_1 }}{{ part_2 }}"