blob: d511f15c2e0682ac9f8348bdad14d32722ef5d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
- hosts: localhost
connection: local
gather_facts: no
vars:
alpha: [ 'a', 'b', 'c', 'd' ]
numbers: [ 1, 2, 3, 4 ]
tasks:
- debug: msg="{{ item.0 }} and {{ item.1 }}"
with_together:
- alpha
- numbers
|