|
@@ -10,12 +10,22 @@ locals {
|
|
|
c2_account_standards_path = "../../mdr-test-c2/005-account-standards-c2"
|
|
|
|
|
|
# For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
|
|
|
- standard_vpc_cidr = "10.20.0.0/22"
|
|
|
-
|
|
|
- vpc_cidrs = {
|
|
|
- "standard_vpc" = "10.20.0.0/22",
|
|
|
- "qualys_vpc" = "10.20.12.0/22",
|
|
|
- "security_vpc" = "10.179.128.0/22"
|
|
|
+ vpc_info = {
|
|
|
+ "vpc-system-services" = {
|
|
|
+ "name" = "vpc-system-services",
|
|
|
+ "purpose" = "Internal Services for Systems",
|
|
|
+ "cidr" = "10.20.0.0/22",
|
|
|
+ },
|
|
|
+ "vpc-qualys" = {
|
|
|
+ "name" = "vpc-qualys",
|
|
|
+ "purpose" = "Security Scanning",
|
|
|
+ "cidr" = "10.20.12.0/22",
|
|
|
+ },
|
|
|
+ "vpc-interconnects" = {
|
|
|
+ "name" = "vpc-interconnects",
|
|
|
+ "purpose" = "Interconnections between AWS partitions",
|
|
|
+ "cidr" = "10.179.128.0/22",
|
|
|
+ },
|
|
|
}
|
|
|
|
|
|
# DNS Resolver
|