-
Notifications
You must be signed in to change notification settings - Fork 25
/
config-aws.json
38 lines (38 loc) · 1.17 KB
/
config-aws.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
{
"port-pairs": [
{
"private-port": {
"index": 0,
"subnet": "10.0.14.10/24",
"subnet6": "2600:1f16:80:ad14::10/64"
},
"public-port": {
"index": 1,
"subnet": "10.0.16.10/24",
"subnet6": "2600:1f16:80:ad16::10/64",
"forward-ports": [
{
"port": 8080,
"destination": "10.0.14.20:80",
"protocol": "TCP"
},
{
"port": 8080,
"destination": "[2600:1f16:80:ad14::20]:80",
"protocol": "TCP6"
},
{
"port": 2222,
"destination": "10.0.14.20:22",
"protocol": "TCP"
},
{
"port": 2222,
"destination": "[2600:1f16:80:ad14::20]:22",
"protocol": "TCP6"
}
]
}
}
]
}