-
Notifications
You must be signed in to change notification settings - Fork 0
/
120.2_playbook_add_assets_to_policy.yaml
65 lines (60 loc) · 1.94 KB
/
120.2_playbook_add_assets_to_policy.yaml
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
# Example Playbok to Add Kubernetes Cluster to PPDM
- name: Add Assets to Policy
hosts: localhost
gather_facts: no
connection: local
vars_files:
- ./vars/main.yml
vars:
policy_name: "Filesystem_Bob"
tasks:
- name: Checking Required Variable ppdm_fqdn
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 Protection Policy with filter
vars:
filter: 'name eq "{{ policy_name }}"'
include_role:
name: get_ppdm_protection_policy
- set_fact:
protection_policy: "{{ protection_policy[0] }}"
when: protection_policy[0] is defined
- debug:
msg: "{{ protection_policy }}"
verbosity: 0
- name: Get PPDM Assets
vars:
filter: "{{ asset_filter | regex_replace(\"'\", '\"') | default('') }}"
include_role:
name: get_ppdm_assets
- name: Assets Result
debug:
msg: "{{ assets | json_query('[*].{name: name,id: id,type: type,protectionStatus: protectionStatus }') }}"
verbosity: 0
when: assets is defined
- name: "Set PPDM Asset Assignments for {{ ppdm_policy }}"
vars:
asset_list: "{{ assets | json_query('[*].id') }}"
id: "{{ protection_policy.id }}"
include_role:
name: set_ppdm_asset_assignments
- debug:
msg: "{{ asset_assignments }}"
verbosity: 0