mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
19 lines
415 B
YAML
19 lines
415 B
YAML
|
- hosts: testhost
|
||
|
gather_facts: false
|
||
|
vars:
|
||
|
boolean_var: false
|
||
|
nested:
|
||
|
bool_var: false
|
||
|
tasks:
|
||
|
- name: Run tasks with previous warnings requesting the bool filter on type boolean vars
|
||
|
block:
|
||
|
- debug:
|
||
|
when: boolean_var
|
||
|
- debug:
|
||
|
when: nested.bool_var
|
||
|
- debug:
|
||
|
when: double_interpolated
|
||
|
vars:
|
||
|
double_interpolated: "{{ other }}"
|
||
|
other: false
|