summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/vars/main.yml
blob: 9d45cf24535aa90ef7e05a20cd4d2099c94cd86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 }}"

parent_vars:
- foo
- bar
- bam