-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinitialise_demo_env.yml
57 lines (44 loc) · 2.18 KB
/
initialise_demo_env.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
---
# This playbook deploys the whole demo enviroment.
#vars: {{virtual_machines}}
- name: Initialising Check Point Ansible Demo enviroment
hosts: localhost
vars_prompt:
- name: "virtual_machines"
prompt: |
#==================================================================================
#
# Specify the location to store the virtual_ machines
# Be sure to include a subsequent backslash \
# For example: C:\demo\
# For default location press return
#==================================================================================
default: "c:\\demo\\"
private: no
- name: "Gaia_SG_ISO"
prompt: |
#==================================================================================
#
# Specify the location of you Gaia_Security_Gateway.iso
# For example: C:\Downloads\ISO\Check_Point_R80.20_T101_Security_Gateway.iso
# For default location press return
#==================================================================================
default: "C:\\Users\\jimo\\Downloads\\ISO and SMC\\R80.20\\Check_Point_R80.20_T101_Security_Gateway.iso"
private: no
- name: "Gaia_SM_ISO"
prompt: |
#==================================================================================
#
# Specify the location of you Gaia_Security_Management.iso
# For example: C:\Downloads\ISO\Check_Point_R80.20_T101_Security_Management.iso
# For default location press return
#==================================================================================
default: "C:\\Users\\jimo\\Downloads\\ISO and SMC\\R80.20\\Check_Point_R80.20_T101_Security_Management.iso"
private: no
gather_facts: no
connection: local
roles:
- role: initialise_demo_env
# virtual_machines: 'c:\demo\'
# Gaia_SG_ISO: C:\Users\jimo\Downloads\ISO and SMC\R80.20\Check_Point_R80.20_T101_Security_Gateway.iso
# Gaia_SM_ISO: C:\Users\jimo\Downloads\ISO and SMC\R80.20\Check_Point_R80.20_T101_Security_Management.iso