mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
24 lines
555 B
YAML
24 lines
555 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']
|
|
|
|
# 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 ]
|