This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.tfvars
92 lines (88 loc) · 2.44 KB
/
common.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
90
91
92
vpcConfigs = {
"default" = {
# cidr of the entire VPC
cidr = "10.20.0.0/16"
# cidr used for client VPN connections; cannot overlap
# with VPC side above
vpnCidr = "10.0.0.0/22"
# "private" just means no placement of IGW
privateNets = [
{ cidr : "10.20.0.0/18", zoneId : "use2-az1" },
{ cidr : "10.20.64.0/18", zoneId : "use2-az2" }
]
# "public" just means where the IGW will live
publicNets = [
{ cidr : "10.20.128.0/24", zoneId : "use2-az1" },
{ cidr : "10.20.129.0/24", zoneId : "use2-az2" }
]
}
"us-east-1" = {
# cidr of the entire VPC
cidr = "10.20.0.0/16"
# cidr used for client VPN connections; cannot overlap
# with VPC side above
vpnCidr = "10.0.0.0/22"
# "private" just means no placement of IGW
privateNets = [
{ cidr : "10.20.0.0/18", zoneId : "use1-az1" },
{ cidr : "10.20.64.0/18", zoneId : "use1-az2" }
]
# "public" just means where the IGW will live
publicNets = [
{ cidr : "10.20.128.0/24", zoneId : "use1-az1" },
{ cidr : "10.20.129.0/24", zoneId : "use1-az2" }
]
}
"us-east-2" = {
# cidr of the entire VPC
cidr = "10.10.0.0/16"
# cidr used for client VPN connections; cannot overlap
# with VPC side above
vpnCidr = "10.0.0.0/22"
# "private" just means no placement of IGW
privateNets = [
{ cidr : "10.10.0.0/18", zoneId : "use2-az1" },
{ cidr : "10.10.64.0/18", zoneId : "use2-az2" }
]
# "public" just means where the IGW will live
publicNets = [
{ cidr : "10.10.128.0/24", zoneId : "use2-az1" },
{ cidr : "10.10.129.0/24", zoneId : "use2-az2" }
]
}
"eu-central-1" = {
# cidr of the entire VPC
cidr = "10.10.0.0/16"
# cidr used for client VPN connections; cannot overlap
# with VPC side above
vpnCidr = "10.0.0.0/22"
# "private" just means no placement of IGW
privateNets = [
{ cidr : "10.10.0.0/18", zoneId : "euc1-az1" },
{ cidr : "10.10.64.0/18", zoneId : "euc1-az3" }
]
# "public" just means where the IGW will live
publicNets = [
{ cidr : "10.10.128.0/24", zoneId : "euc1-az1" },
{ cidr : "10.10.129.0/24", zoneId : "euc1-az3" }
]
}
}
commonVpcConfigs = {
interfaceEndpoints = [
"elasticache",
"ec2",
"ec2messages",
"ecr.api",
"ecr.dkr",
"autoscaling",
"sts",
"logs",
"lambda",
"ssm",
"ssmmessages"
]
gatewayEndpoints = [
"s3"
]
}