-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.auto.tfvars
89 lines (89 loc) · 2.59 KB
/
vars.auto.tfvars
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
firewall_rules = {
"allow-https-imperva" = {
"protocol" = "tcp"
"ports" = ["443"]
"priority" = "1000"
"tags" = ["https-imperva"]
"description" = "Allow http & https communication only via Imperva."
"source_ip_ranges" = [
"199.83.128.0/21",
"149.126.72.0/21",
"103.28.248.0/22",
"45.64.64.0/22",
"185.11.124.0/22",
"192.230.64.0/18",
"107.154.0.0/16",
"45.60.0.0/16",
"45.223.0.0/16"
]
}
"allow-https-vpn" = {
"protocol" = "tcp"
"ports" = ["443"]
"priority" = "1000"
"tags" = ["https-vpn"]
"description" = "Allow https communication via VPN."
"source_ip_ranges" = [
"160.16.0.0/24",
"160.16.1.0/24",
"160.16.3.0/24"
]
}
"allow-example" = {
"protocol" = "all"
"priority" = "1000"
"description" = "Allow communication from Example project - hello VPC."
"source_ip_ranges" = ["10.200.0.0/16"]
}
"allow-example-default" = {
"protocol" = "all"
"priority" = "1000"
"description" = "Allow communication from Example project - default VPC."
"source_ip_ranges" = ["10.160.0.0/10"]
}
"allow-example2" = {
"protocol" = "all"
"priority" = "1000"
"description" = "Allow communication from Example2 project - hello2 VPC."
"source_ip_ranges" = ["10.100.0.0/15"]
}
"allow-internal" = {
"protocol" = "tcp"
"ports" = ["1-65535"]
"priority" = "65534"
"description" = "Allow all internal communication between subnetworks."
"source_ip_ranges" = [
"10.222.0.0/16",
"10.223.0.0/16",
"10.224.0.0/16",
"10.225.0.0/16"
]
}
"allow-upcloud" = {
"protocol" = "all"
"priority" = "1000"
"description" = "Allow communication from UpCloud private network, SDN & internal site-to-site VPN network."
"source_ip_ranges" = [
"10.2.0.0/16",
"10.120.7.0/24",
"160.16.18.0/24"
]
}
"allow-ssh" = {
"protocol" = "tcp"
"ports" = ["22"]
"priority" = "1000"
"description" = "Allow SSH communication via VPN."
"source_ip_ranges" = [
"160.16.0.0/24",
"160.16.1.0/24",
"160.16.3.0/24"
]
}
"allow-icmp" = {
"protocol" = "icmp"
"priority" = "65534"
"description" = "Allow ICMP."
"source_ip_ranges" = ["0.0.0.0/0"]
}
}