0e834fc9e4
This change corrects problems reported by the `yamllint` linter.
Since key duplication problems were removed in 4d48711
, this commit
mainly fixes trailing spaces and extra empty lines at beginning/end of
files.
15 lines
300 B
YAML
15 lines
300 B
YAML
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 }}"
|