-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathip_ranges.tf
More file actions
69 lines (68 loc) · 1.37 KB
/
ip_ranges.tf
File metadata and controls
69 lines (68 loc) · 1.37 KB
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
variable "ec2_instance_connect_ip_ranges" {
default = [
{
ip_prefix = "3.120.181.40/29"
region = "eu-central-1"
},
{
ip_prefix = "16.63.77.8/29"
region = "eu-central-2"
},
{
ip_prefix = "13.48.4.200/30"
region = "eu-north-1"
},
{
ip_prefix = "15.161.135.164/30"
region = "eu-south-1"
},
{
ip_prefix = "18.101.90.48/29"
region = "eu-south-2"
},
{
ip_prefix = "18.202.216.48/29"
region = "eu-west-1"
},
{
ip_prefix = "3.8.37.24/29"
region = "eu-west-2"
},
{
ip_prefix = "35.180.112.80/29"
region = "eu-west-3"
},
{
ip_prefix = "18.206.107.24/29"
region = "us-east-1"
},
{
ip_prefix = "3.16.146.0/29"
region = "us-east-2"
},
{
ip_prefix = "13.52.6.112/29"
region = "us-west-1"
},
{
ip_prefix = "18.237.140.160/29"
region = "us-west-2"
},
{
ip_prefix = "18.252.4.0/30"
region = "us-gov-east-1"
},
{
ip_prefix = "15.200.28.80/30"
region = "us-gov-west-1"
},
{
ip_prefix = "35.183.92.176/29"
region = "ca-central-1"
},
{
ip_prefix = "***" # user's ip from dynamic input
region = "###" # user's aws region from dynamic input
}
]
}