summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tasks/with_items.yml
blob: 07c72aac5952f0a053780bea5ae96140d0ea0632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- command: echo 123
  with_items: []

- command: echo 123
  with_items:
    - 1
    - foo
    - {}
    - []

- command: echo 123
  vars:
    my_list:
      - 1
      - 2
  with_items: "{{ my_list }}"