-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplaybook-build-example
68 lines (68 loc) · 2.16 KB
/
playbook-build-example
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Ansible_Build_Example/
├── Project-A
│ ├── ansible.cfg
│ ├── builds
│ │ ├── A1-ospf-host-a.build
│ │ ├── A3-switching-host-a.build
│ │ └── B2-management-host-a.build
│ ├── configs
│ │ └── host-a.cfg
│ ├── global-task-a.yml
│ ├── global-task-b.yml
│ ├── global-task-c.yml
│ ├── group_vars
│ │ ├── group-a.yml
│ │ ├── group-b.yml
│ │ └── group-c.yml
│ ├── host_vars
│ │ ├── host-a.yml
│ │ ├── host-b.yml
│ │ └── host-c.yml
│ ├── hosts
│ └── roles
│ ├── defaults
│ │ └── all.yml
│ ├── files
│ │ ├── file-a
│ │ └── file-b
│ ├── handlers
│ │ └── main.yml
│ ├── tasks
│ │ ├── do-that.yml
│ │ └── do-this.yml
│ ├── templates
│ │ ├── template-1.j2
│ │ └── template-b.j2
│ └── vars
│ └── main.yml
└── Project-B
├── ansible.cfg
├── configs
│ └── host-a.cfg
├── global-task-a1.yml
├── global-task-b.yml
├── group_vars
│ ├── group-a.yml
│ ├── group-b.yml
│ └── group-c.yml
├── host_vars
│ ├── host-a.yml
│ ├── host-b.yml
│ └── host-c.yml
├── hosts
└── roles
├── defaults
│ └── all.yml
├── files
│ ├── file-a
│ └── file-b
├── handlers
│ └── main.yml
├── tasks
│ ├── do-that.yml
│ └── do-this.yml
├── templates
│ ├── template-1.j2
│ └── template-b.j2
└── vars
└── main.yml