mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 01:03:09 +00:00
11 lines
266 B
YAML
11 lines
266 B
YAML
---
|
|
# this is a trivial example of how to do a nested loop.
|
|
|
|
- hosts: all
|
|
tasks:
|
|
- shell: echo 'nested test a=${item.0} b=${item.1} c=${item.2}'
|
|
with_nested:
|
|
- [ 'red', 'blue', 'green' ]
|
|
- [ 1, 2, 3 ]
|
|
- [ 'up', 'down', 'strange']
|