Files
Matt MartzandGitHub 18992b7947 Add new loop_control.extended_allitems option (#75760)
* Add new `loop_control.extended_allitems` option. Fixes #75216

* Add test for extended_allitems

* docs code block fix
2022-06-16 08:56:13 -05:00

24 lines
526 B
YAML

- name: loop_control/extended/include https://github.com/ansible/ansible/issues/61218
hosts: localhost
gather_facts: false
tasks:
- name: loop on an include
include_tasks: inner.yml
loop:
- first
- second
- third
loop_control:
extended: yes
- debug:
var: ansible_loop
loop:
- first
- second
- third
loop_control:
extended: yes
extended_allitems: no
failed_when: ansible_loop.allitems is defined