mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8 lines
185 B
YAML
8 lines
185 B
YAML
|
- hosts: all
|
||
|
vars:
|
||
|
playbook_var_good: "ok"
|
||
|
playbook_var_bad: "{{ undefined_var }}"
|
||
|
tasks:
|
||
|
- debug: msg="{{ inventory_var_good }}"
|
||
|
- debug: msg="{{ inventory_var_bad }}"
|