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/lookup_flattened/tasks/main.yml

14 lines
312 B
YAML

- name: test with_flattened
set_fact: "{{ item }}=flattened"
with_flattened:
- [ 'a__' ]
- [ 'b__', ['c__', 'd__'] ]
- name: verify with_flattened results
assert:
that:
- "a__ == 'flattened'"
- "b__ == 'flattened'"
- "c__ == 'flattened'"
- "d__ == 'flattened'"