blob: 7cba53b09113a41e273bc96b0adc7389c0ab090f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
- name: Fixture for syntax[moves]
hosts: localhost
tasks:
- name: 1st
ansible.builtin.debug:
msg: "{{ item }}"
with_flattened: [] # moved to community.general in 2.10
- name: 2nd
ansible.builtin.debug:
msg: "{{ item }}"
with_cartesian: [] # moved to community.general in 2.10
- name: 3rd
ansible.builtin.debug:
msg: "{{ item }}"
with_filetree: [] # moved to community.general in 2.10
|