-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathservice_groups.yml
59 lines (50 loc) · 1.19 KB
/
service_groups.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
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
#Create
service_groups:
- name: ngt
description: Example Service Group NGT - TCP
service_details:
tcp:
- "2074"
- name: dns
description: Example Service Group DNS - UDP
service_details:
udp:
- "53"
#Delete
service_groups:
- name: ngt
- name: dns
######################################## SCHEMA DOCUMENTATION ########################################
### ---CREATE SCHEMA --- ###
# service_groups:
# type: list
# schema:
# type: dict
# schema:
# name:
# type: string
# required: true
# description:
# type: string
# service_details:
# type: dict
# required: true
# keyschema:
# type: string
# valueschema:
# type: list
#
### ---DELETE SCHEMA --- ###
# service_groups:
# type: list
# schema:
# type: dict
# required: true
# schema:
# name:
# type: string
#
####################################################################################################