summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansibleworks.com>2013-05-05 19:37:56 +0200
committerMichael DeHaan <michael@ansibleworks.com>2013-05-05 19:37:56 +0200
commit79c2a34fa079635f080bb0d74a39ccb386583399 (patch)
tree1d4a6b89783dbbf354f1701b4b95f3475eb34d93 /examples
parentupdate group_by example (diff)
downloadansible-79c2a34fa079635f080bb0d74a39ccb386583399.tar.xz
ansible-79c2a34fa079635f080bb0d74a39ccb386583399.zip
update nested example
Diffstat (limited to 'examples')
-rw-r--r--examples/playbooks/loop_nested.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/playbooks/loop_nested.yml b/examples/playbooks/loop_nested.yml
index 110737d1bf..b546bd1e7c 100644
--- a/examples/playbooks/loop_nested.yml
+++ b/examples/playbooks/loop_nested.yml
@@ -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 ]