-
Notifications
You must be signed in to change notification settings - Fork 4
/
remote_az.yml
44 lines (35 loc) · 1 KB
/
remote_az.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
pc_ip: valid-pc-ip
# Specify a user with permission to make API calls.
pc_credential: pc_user # credential reference from "vaults" in global.yml file
#Connect (Create)
remote_azs:
# remote AZ details, only Physical location is supported yet
valid-remote-pc-ip:
pc_credential: remote_pc_credentials # credential reference from "vaults" in global.yml file
#Disconnect
remote_azs:
- valid-remote-pc-ip
- valid-remote-pc-ip
######################################## SCHEMA DOCUMENTATION ########################################
### ---CREATE SCHEMA --- ###
# remote_azs:
# type: dict
# required: false
# keyschema:
# type: string
# valueschema:
# type: dict
# schema:
# pc_credential:
# type: string
# required: true
#
### ---DELETE SCHEMA --- ###
# remote_azs:
# type: list
# required: false
# schema:
# type: string
# required: true
#
####################################################################################################