1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix example

This commit is contained in:
Michael DeHaan 2013-03-11 23:37:29 -04:00
parent 444c8943fc
commit df9e716208

View file

@ -3,7 +3,7 @@
- hosts: all
tasks:
- shell: echo 'nested test a=${item.0} b=${item.1} c=${item.2}'
- shell: echo "nested test a=${item[0]} b=${item[1]} c=${item[2]}"
with_nested:
- [ 'red', 'blue', 'green' ]
- [ 1, 2, 3 ]