summaryrefslogtreecommitdiff
path: root/test/integration/targets/azure_rm_devtestlab/tasks/main.yml
blob: c513468980a9ca74a741f29dd71d41d5633867cd (plain)
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
- name: Prepare random number
  set_fact:
    lab_name: "lab{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
    vn_name: "vn{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
    vm_name: "vn{{ resource_group | hash('md5') | truncate(7, True, '') }}{{ 1000 | random }}"
    artifacts_name: myartifacts
    github_token: "{{ lookup('env','GITHUB_ACCESS_TOKEN') }}"
  run_once: yes

- name: Create instance of Lab -- check mode
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}"
    location: eastus
    storage_type: standard
    premium_data_disks: no
  check_mode: yes
  register: output
- name: Check if the change was correctly reported
  assert:
    that:
      - output.changed

- name: Create instance of Lab
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}"
    location: eastus
    storage_type: standard
    premium_data_disks: no
  register: output
- name: Check if the change was correctly reported
  assert:
    that:
      - output.changed

- name: Create again instance of Lab
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}"
    location: eastus
    storage_type: standard
    premium_data_disks: no
  register: output
- name: Assert the state has not changed
  assert:
    that:
      - output.changed == false

- name: Update lab - premium_data_disks
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}"
    location: eastus
    storage_type: standard
    premium_data_disks: yes
  register: output
- name: Assert the change was registered
  assert:
    that:
      - output.changed

- name: Get DevTest Lab facts
  azure_rm_devtestlab_facts:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}"
  register: output
- name: Assert that facts are returned
  assert:
    that:
      - output.changed == False
      - output.labs[0]['id'] != None
      - output.labs[0]['resource_group'] != None
      - output.labs[0]['name'] != None
      - output.labs[0]['location'] != None
      - output.labs[0]['storage_type'] != None
      - output.labs[0]['premium_data_disks'] != None
      - output.labs[0]['provisioning_state'] != None
      - output.labs[0]['artifacts_storage_account'] != None
      - output.labs[0]['default_premium_storage_account'] != None
      - output.labs[0]['default_storage_account'] != None
      - output.labs[0]['premium_data_disk_storage_account'] != None
      - output.labs[0]['vault_name'] != None

- name: List DevTest Lab in a resource group
  azure_rm_devtestlab_facts:
    resource_group: "{{ resource_group }}"
  register: output
- name: Assert that facts are returned
  assert:
    that:
      - output.changed == False
      - output.labs[0]['id'] != None
      - output.labs[0]['resource_group'] != None
      - output.labs[0]['name'] != None
      - output.labs[0]['location'] != None
      - output.labs[0]['storage_type'] != None
      - output.labs[0]['premium_data_disks'] != None
      - output.labs[0]['provisioning_state'] != None
      - output.labs[0]['vault_name'] != None

- name: Create instance of DevTest Labs virtual network
  azure_rm_devtestlabvirtualnetwork:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vn_name }}"
    location: eastus
    description: My DevTest Lab
  register: output
- name: Assert the change was registered
  assert:
    that:
      - output.changed

- name: Update instance of DevTest Labs virtual network with same parameters
  azure_rm_devtestlabvirtualnetwork:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vn_name }}"
    location: eastus
    description: My DevTest Lab
  register: output
- name: Assert that nothing was changed
  assert:
    that:
      - output.changed == false

- name: Update instance of DevTest Labs virtual network with changed description
  azure_rm_devtestlabvirtualnetwork:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vn_name }}"
    location: eastus
    description: My DevTest Lab Updated
  register: output
- name: Assert that nothing was changed
  assert:
    that:
      - output.changed

- name: Get DevTest Lab Virtual Network facts
  azure_rm_devtestlabvirtualnetwork_facts:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vn_name }}"
  register: output
- name: Assert that facts are returned
  assert:
    that:
      - output.changed == False
      - output.virtualnetworks[0]['id'] != None
      - output.virtualnetworks[0]['resource_group'] != None
      - output.virtualnetworks[0]['lab_name'] != None
      - output.virtualnetworks[0]['name'] != None
      - output.virtualnetworks[0]['external_provider_resource_id'] != None
      - output.virtualnetworks[0]['description'] != None
      - output.virtualnetworks[0]['provisioning_state'] != None

- name: List all Virtual Networks in DevTest Lab
  azure_rm_devtestlabvirtualnetwork_facts:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
  register: output
- name: Assert that facts are returned
  assert:
    that:
      - output.changed == False
      - output.virtualnetworks[0]['id'] != None
      - output.virtualnetworks[0]['resource_group'] != None
      - output.virtualnetworks[0]['lab_name'] != None
      - output.virtualnetworks[0]['name'] != None
      - output.virtualnetworks[0]['external_provider_resource_id'] != None
      - output.virtualnetworks[0]['description'] != None
      - output.virtualnetworks[0]['provisioning_state'] != None

#- name: Create instance of DevTest Labs artifacts source
#  azure_rm_devtestlabartifactsource:
#    resource_group: "{{ resource_group }}"
#    lab_name: "{{ lab_name }}"
#    name: "{{ artifacts_name }}"
#    uri: https://github.com/Azure/azure_preview_modules.git
#    source_type: github
#    folder_path: /tasks
#    security_token: "{{ github_token }}"
#  register: output 
#- name: Assert if the change was correctly reported
#  assert:
#    that:
#      - output.changed

#- name: Update instance of DevTest Labs artifacts source with same parameters
#  azure_rm_devtestlabartifactsource:
#    resource_group: "{{ resource_group }}"
#    lab_name: "{{ lab_name }}"
#    name: "{{ artifacts_name }}"
#    uri: https://github.com/Azure/azure_preview_modules.git
#    source_type: github
#    folder_path: /tasks
#    security_token: "{{ github_token }}"
#  register: output 
#- name: Assert that nothing was changed
#  assert:
#    that:
#      - output.changed == false

#- name: Update instance of DevTest Labs artifacts source, add display name, change folder
#  azure_rm_devtestlabartifactsource:
#    resource_group: "{{ resource_group }}"
#    lab_name: "{{ lab_name }}"
#    name: "{{ artifacts_name }}"
#    uri: https://github.com/Azure/azure_preview_modules.git
#    source_type: github
#    folder_path: /library
#    security_token: "{{ github_token }}"
#    display_name: My Artifacts Source
#  register: output 
#- name: Assert that nothing was changed
#  assert:
#    that:
#      - output.changed

- name: Create instance of DTL Virtual Machine
  azure_rm_devtestlabvirtualmachine:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vm_name }}"
    notes: Virtual machine notes, just something....
    os_type: linux
    vm_size: Standard_A2_v2
    user_name: dtladmin
    password: ZSasfovobocu$$21!
    lab_subnet:
      virtual_network_name: "{{ vn_name }}"
      name: "{{ vn_name }}Subnet"
    disallow_public_ip_address: no
    image:
      offer: UbuntuServer
      publisher: Canonical
      sku: 16.04-LTS
      os_type: Linux
      version: latest
#    artifacts:
#      - source_name: "{{ artifacts_name }}"
#        source_path: "/Artifacts/linux-install-mongodb"
    allow_claim: no
    expiration_date: "2029-02-22T01:49:12.117974Z"
  register: output

- name: Assert that change was registered
  assert:
    that:
      - output.changed

- name: Update instance of DTL Virtual Machine with same parameters
  azure_rm_devtestlabvirtualmachine:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vm_name }}"
    notes: Virtual machine notes, just something....
    os_type: linux
    vm_size: Standard_A2_v2
    user_name: dtladmin
    password: ZSasfovobocu$$21!
    lab_subnet:
      virtual_network_name: "{{ vn_name }}"
      name: "{{ vn_name }}Subnet"
    disallow_public_ip_address: no
    image:
      offer: UbuntuServer
      publisher: Canonical
      sku: 16.04-LTS
      os_type: Linux
      version: latest
#    artifacts:
#      - source_name: "{{ artifacts_name }}"
#        source_path: "/Artifacts/linux-install-mongodb"
    allow_claim: no
    expiration_date: "2029-02-22T01:49:12.117974Z"
  register: output

- name: Assert that nothing has changed
  assert:
    that:
      - output.changed == false

- name: Update instance of DTL Virtual Machine - change notes
  azure_rm_devtestlabvirtualmachine:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vm_name }}"
    notes: Virtual machine notes, just something.... more text
    os_type: linux
    vm_size: Standard_A2_v2
    user_name: dtladmin
    password: ZSasfovobocu$$21!
    lab_subnet:
      virtual_network_name: "{{ vn_name }}"
      name: "{{ vn_name }}Subnet"
    disallow_public_ip_address: no
    image:
      offer: UbuntuServer
      publisher: Canonical
      sku: 16.04-LTS
      os_type: Linux
      version: latest
#    artifacts:
#      - source_name: "{{ artifacts_name }}"
#        source_path: "/Artifacts/linux-install-mongodb"
    allow_claim: no
    expiration_date: "2029-02-22T01:49:12.117974Z"
  register: output

- name: Assert that change was registered
  assert:
    that:
      - output.changed

- name: Get Facts of DTL Virtual Machine
  azure_rm_devtestlabvirtualmachine_facts:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
    name: "{{ vm_name }}"
  register: output
- name: Assert that facts are returned
  assert:
    that:
      - output.changed == False
      - output.virtualmachines[0]['id'] != None
      - output.virtualmachines[0]['resource_group'] != None
      - output.virtualmachines[0]['lab_name'] != None
      - output.virtualmachines[0]['name'] != None
      - output.virtualmachines[0]['compute_vm_id'] != None
      - output.virtualmachines[0]['compute_vm_resource_group'] != None
      - output.virtualmachines[0]['compute_vm_name'] != None
      - output.virtualmachines[0]['disallow_public_ip_address'] != None
      - output.virtualmachines[0]['expiration_date'] != None
      - output.virtualmachines[0]['fqdn'] != None
      - output.virtualmachines[0]['id'] != None
      - output.virtualmachines[0]['image'] != None
      - output.virtualmachines[0]['notes'] != None
      - output.virtualmachines[0]['os_type'] != None
      - output.virtualmachines[0]['provisioning_state'] != None
      - output.virtualmachines[0]['storage_type'] != None
      - output.virtualmachines[0]['user_name'] != None
      - output.virtualmachines[0]['vm_size'] != None

- name: List Facts of DTL Virtual Machine
  azure_rm_devtestlabvirtualmachine_facts:
    resource_group: "{{ resource_group }}"
    lab_name: "{{ lab_name }}"
  register: output
- name: Assert that facts are returned
  assert:
    that:
      - output.changed == False
      - output.virtualmachines[0]['id'] != None
      - output.virtualmachines[0]['resource_group'] != None
      - output.virtualmachines[0]['lab_name'] != None
      - output.virtualmachines[0]['name'] != None
      - output.virtualmachines[0]['compute_vm_id'] != None
      - output.virtualmachines[0]['disallow_public_ip_address'] != None
      - output.virtualmachines[0]['expiration_date'] != None
      - output.virtualmachines[0]['fqdn'] != None
      - output.virtualmachines[0]['id'] != None
      - output.virtualmachines[0]['image'] != None
      - output.virtualmachines[0]['notes'] != None
      - output.virtualmachines[0]['os_type'] != None
      - output.virtualmachines[0]['provisioning_state'] != None
      - output.virtualmachines[0]['storage_type'] != None
      - output.virtualmachines[0]['user_name'] != None
      - output.virtualmachines[0]['vm_size'] != None

#- name: Delete instance of DevTest Labs artifacts source
#  azure_rm_devtestlabartifactsource:
#    resource_group: "{{ resource_group }}"
#    lab_name: "{{ lab_name }}"
#    name: "{{ artifacts_name }}"
#    state: absent
#  register: output 
#- name: Assert that change was correctly registered
#  assert:
#    that:
#      - output.changed

- name: Delete instance of Lab -- check mode
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    state: absent
    name: "{{ lab_name }}"
  check_mode: yes
  register: output
- name: Assert if the change was correctly reported in check mode
  assert:
    that:
      - output.changed

- name: Delete instance of Lab
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}"
    state: absent
  register: output
- name: Assert the change was correctly reported
  assert:
    that:
      - output.changed

- name: Delete unexisting instance of Lab
  azure_rm_devtestlab:
    resource_group: "{{ resource_group }}"
    name: "{{ lab_name }}unexisting"
    state: absent 
  register: output
- name: Assert thes state has not changed
  assert:
    that:
      - output.changed == false