|
@@ -11,9 +11,14 @@ locals {
|
|
|
|
|
|
# For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
|
|
|
vpc_info = {
|
|
|
+ "vpc-splunk" = {
|
|
|
+ "name" = "vpc-splunk"
|
|
|
+ "purpose" = "Splunk Systems (MOOSE)"
|
|
|
+ "cidr" = "10.20.16.0/22"
|
|
|
+ },
|
|
|
"vpc-system-services" = {
|
|
|
"name" = "vpc-system-services",
|
|
|
- "purpose" = "Internal Services for Systems",
|
|
|
+ "purpose" = "Internal Services for Systems (not people)",
|
|
|
"cidr" = "10.20.0.0/22",
|
|
|
},
|
|
|
"vpc-qualys" = {
|
|
@@ -26,6 +31,26 @@ locals {
|
|
|
"purpose" = "Interconnections between AWS partitions",
|
|
|
"cidr" = "10.179.128.0/22",
|
|
|
},
|
|
|
+ "vpc-access" = {
|
|
|
+ "name" = "vpc-access"
|
|
|
+ "purpose" = "Systems providing restricted access, such as bastions and vpn concentrators"
|
|
|
+ "cidr" = "10.20.20.0/22"
|
|
|
+ },
|
|
|
+ "vpc-portal" = {
|
|
|
+ "name" = "vpc-portal"
|
|
|
+ "purpose" = "The Customer Portal"
|
|
|
+ "cidr" = "10.20.32.0/24"
|
|
|
+ },
|
|
|
+ "vpc-public" = {
|
|
|
+ "name" = "vpc-public"
|
|
|
+ "purpose" = "Publicly Accessible Infrastructure Services, such as GHE and Jira"
|
|
|
+ "cidr" = "10.20.24.0/22"
|
|
|
+ },
|
|
|
+ "vpc-private-services" = {
|
|
|
+ "name" = "vpc-private-services"
|
|
|
+ "purpose" = "Private XDR Services for XDR users"
|
|
|
+ "cidr" = "10.20.28.0/22"
|
|
|
+ },
|
|
|
}
|
|
|
|
|
|
# DNS Resolver
|
|
@@ -42,8 +67,6 @@ locals {
|
|
|
# AS Number used for various resources, but not every account needs one.
|
|
|
asn = 64710 # changing this replaces the gateway
|
|
|
|
|
|
- security_vpc_cidr = "10.179.128.0/22"
|
|
|
-
|
|
|
# Interconnects
|
|
|
interconnect_asn = 64777
|
|
|
interconnects_instance_type = "t3a.micro"
|