-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoutput.json
52 lines (52 loc) · 926 Bytes
/
output.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"vpc_id": {
"type": "string"
},
"vpc_cidr": {
"type": "string"
},
"subnet_cidrs": {
"type": "array",
"items": {
"type": "string"
}
},
"subnet_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"security_group_id": {
"type": "string"
},
"security_group_rules": {
"type": "array",
"items": {
"type": "string"
}
},
"queried_vpc_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"queried_subnet_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"queried_security_group_ids": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}