Merge pull request #18 from candeira/loop_nested

document use of raw variables in loop_nested
pull/63/head
Tim Gerla 11 years ago
commit cca8cbdc23
  1. 14
      language_features/loop_nested.yml

@ -8,3 +8,17 @@
- [ 'red', 'blue', 'green' ]
- [ 1, 2, 3 ]
- [ 'up', 'down', 'strange']
# you can reference a raw variable name without putting it in {{ brackets }}
- hosts: all
vars:
listvar1:
- 'a'
- 'b'
- 'c'
tasks:
- shell: echo "nested test a={{ item[0] }} b={{ item[1] }}"
with_nested:
- listvar1
- [ 1, 2, 3 ]