-
Notifications
You must be signed in to change notification settings - Fork 1
/
scratch_get_flr.yml
37 lines (35 loc) · 1.1 KB
/
scratch_get_flr.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
# Example Playbok to Add DDVE to PPDM
- name: Get PPDM FLR Session
hosts: localhost
gather_facts: no
connection: local
# vars:
# flr_session.flrSessionId: ddaa4cc8-c2da-4058-9b28-c8d17200c62e
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_flr_session
include_role:
name: get_flr_session
vars:
id: "{{ flr_session.flrSessionId }}/files/"