-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path39578.yml
37 lines (34 loc) · 865 Bytes
/
39578.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
- hosts: localhost
tasks:
- name: delete RG
azure_rm_resourcegroup:
name: to_be_deleted
location: westeurope
state: absent
subscription_id: XXXXX
client_id: XXXXX
secret: XXXXX
tenant: XXXXX
- name: create a new RG
azure_rm_resourcegroup:
name: to_be_deleted
location: westeurope
tags:
first_tag: nothing
second_tag: to_be_updated
subscription_id: XXXXX
client_id: XXXXX
secret: XXXXX
tenant: XXXXX
- name: update RG tags
azure_rm_resourcegroup:
name: to_be_deleted
location: westeurope
append_tags: True
tags:
second_tag: updated
third_tag: new
subscription_id: XXXXX
client_id: XXXXX
secret: XXXXX
tenant: XXXXX