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 ]