-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.3-playbook_updarte_cloud_dr_account.yml
72 lines (69 loc) · 2.11 KB
/
2.3-playbook_updarte_cloud_dr_account.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
# Example Playbok to Add DDVE to PPDM
- name: Add DDVE to PPDM
hosts: localhost
gather_facts: no
connection: local
vars_files:
- ./vars/main.yml
tasks:
- name: Checking Required Variables
fail:
msg: "We do not have ppdm fqdn set !"
when: (ppdm_fqdn is not defined) or (ppdm_fqdn|length <= 8)
- name: Checking Required Variables
fail:
msg: "We do not have ppdm_new_password set !"
when: (ppdm_new_password is not defined) or (ppdm_new_password|length == 0)
- name: Setting Base URL
set_fact:
ppdm_baseurl: "https://{{ ppdm_fqdn | regex_replace('^https://') }}"
- name: Get PPDM Token for https://{{ ppdm_fqdn | regex_replace('^https://') }}
include_role:
name: get_ppdm_token
vars:
ppdm_password: "{{ ppdm_new_password }}"
- debug:
msg: "{{ access_token }}"
verbosity: 1
name: do we have a token ?
- name: GET CRA Component ID
include_role:
name: get_ppdm_components
- debug:
msg: "{{ components.content | json_query(jmesquery) }}"
vars:
jmesquery: "[? componentServiceName=='cdr']"
verbosity: 0
- set_fact:
component_id: "{{ components.content | json_query(jmesquery) }}"
vars:
jmesquery: "[? componentServiceName=='cdr'].id | [0]"
- name: GET CRA Component status
include_role:
name: get_ppdm_components
vars:
id: "{{ component_id }}"
retries: 20
delay: 5
condition: result.json.status == "UP"
- name: Get Cloud DR Account
include_role:
name: get_clouddr_account
vars:
filter: providerName eq "AZURE"
- name: set cdra component
include_role:
name: update_clouddr_account
vars:
account_id: "{{ clouddr_accounts[0].id }}"
status_codes: 200,201,202,503 ,400
data:
providerName: AZURE
providerParameters:
- name: subscriptionId
value: "{{ subscriptionId }}"
- name: domain
value: "{{ domain }}"
userKey: "{{ userKey }}"
secretKey: "{{ secretKey }}"
when: clouddr_accounts[0].id is defined