You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/roles/tasks/check_vars.yml

8 lines
222 B
YAML

- debug: var={{item}}
loop: '{{possible_vars}}'
- assert:
that:
- (item in vars and item in defined and vars[item] == defined[item]) or (item not in vars and item not in defined)
loop: '{{possible_vars}}'