-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathnested_blocks.yml
More file actions
34 lines (33 loc) · 1.05 KB
/
nested_blocks.yml
File metadata and controls
34 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
- name: Verify tests
hosts: all
gather_facts: False
tasks:
- name: 1st level block
block:
- name: 2nd level block
block:
- name: 3rd level block
block:
- name: 4th level block
block:
- name: 5th level block
block:
- name: 6th level uri
ansible.builtin.uri:
url: https://www.example.com
- name: 5th level uri
ansible.builtin.uri:
url: https://www.example.com
- name: 4th level uri
ansible.builtin.uri:
url: https://www.example.com
- name: 3rd level uri
ansible.builtin.uri:
url: https://www.example.com
- name: 2nd level uri
ansible.builtin.uri:
url: https://www.example.com
- name: 1st level uri
ansible.builtin.uri:
url: https://www.example.com