-
Notifications
You must be signed in to change notification settings - Fork 0
/
playbook.yml
203 lines (195 loc) · 5.83 KB
/
playbook.yml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
---
- name: Bring Up Play
hosts: all
gather_facts: false
vars:
# Preparing log-in anchor to omit repetitive lines
aci_login: &aci_login
host: "{{ apic }}"
port: "{{ apicPort }}"
username: "{{ apicUser }}"
password: "{{ apicPassword }}"
validate_certs: no
# Preparing log-in anchor for signature-based authentication
aci_login_cert: &aci_login_cert
host: "{{ apic }}"
port: "{{ apicPort }}"
username: "{{ automationUser }}"
private_key: "{{ privateKey }}"
certificate_name: "{{automationUser}}_crt"
validate_certs: no
tasks:
# Adding a user for signature-based authentication
- name: Add User
delegate_to: localhost
aci_rest:
<<: *aci_login
path: /api/policymgr/mo/uni/userext.json
method: post
content:
{
"aaaUser": {
"attributes": {
"name": "{{automationUser}}",
"pwd": "{{automationPassword}}"
},
"children": [{
"aaaUserDomain": {
"attributes": {
"name": "all"
},
"children": [{
"aaaUserRole": {
"attributes": {
"name": "admin",
"privType": "writePriv"
}
}
}]
}
}]
}
}
# Adding a certificate for signature-based authentication
- name: Add X.509 Certificate to a User
delegate_to: localhost
aci_rest:
<<: *aci_login
path: /api/node/mo/uni/userext/user-{{automationUser}}/usercert-{{automationUser}}_crt.json
method: post
content:
{
"aaaUserCert": {
"attributes": {
"name": "{{automationUser}}_crt",
"data": "{{automationCert}}"
}
}
}
# Adding system banners that will indicate that this is a simulator
- name: Add System Banners
delegate_to: localhost
aci_rest:
<<: *aci_login_cert
path: /api/node/mo/uni/userext/preloginbanner.json
method: post
content:
{
"aaaPreLoginBanner": {
"attributes": {
"bannerMessage": "You sure you want to waste your hours here?\nOk, I know the answer...",
"bannerMessageSeverity": "info",
"message": "{{apicBanner}}",
"guiTextMessage": "{{apicBanner}}"
}
}
}
# Registering virtual nodes
- name: Switch Registration
delegate_to: localhost
aci_rest:
<<: *aci_login_cert
path: /api/node/mo/uni/controller.json
method: post
content:
{
"fabricNodeIdentPol": {
"attributes": {},
"children": [{
"fabricNodeIdentP": {
"attributes": {
"serial": "TEP-1-101",
"nodeId": "111",
"name": "Leaf111"
},
}
},
{
"fabricNodeIdentP": {
"attributes": {
"serial": "TEP-1-102",
"nodeId": "112",
"name": "Leaf112"
}
}
},
{
"fabricNodeIdentP": {
"attributes": {
"serial": "TEP-1-104",
"nodeId": "113",
"name": "Leaf113"
}
}
},
{
"fabricNodeIdentP": {
"attributes": {
"serial": "TEP-1-105",
"nodeId": "114",
"name": "Leaf114"
}
}
},
{
"fabricNodeIdentP": {
"attributes": {
"serial": "TEP-1-103",
"nodeId": "101",
"name": "Spine101"
}
}
}
]
}
}
# Adding remote FTP server for storing backups
- name: Add Remote Location FTP
delegate_to: localhost
aci_rest:
<<: *aci_login_cert
path: /api/node/mo/uni/fabric/path-FTP-{{ftpIP}}.json
method: post
content:
{
"fileRemotePath": {
"attributes": {
"remotePort": "21",
"name": "FTP-{{ftpIP}}",
"host": "{{ftpIP}}",
"protocol": "ftp",
"remotePath": "{{ftpPath}}",
"userName": "{{ftpUser}}",
"userPasswd": "{{ftpPassword}}"
}
}
}
# Adding backup scheduler
- name: Add Daily Backup
delegate_to: localhost
aci_rest:
<<: *aci_login_cert
path: /api/node/mo/uni/fabric/configexp-DialyFtpBackup.json
method: post
content:
{
"configExportP": {
"attributes": {
"name": "DialyFtpBackup",
"adminSt": "triggered"
},
"children": [{
"configRsExportScheduler": {
"attributes": {
"tnTrigSchedPName": "EveryEightHours"
}
}
}, {
"configRsRemotePath": {
"attributes": {
"tnFileRemotePathName": "FTP-{{ftpIP}}"
}
}
}]
}
}