|
@@ -11,6 +11,24 @@ locals {
|
|
|
|
|
|
# For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
|
|
|
standard_vpc_cidr = "10.1.1.0/22"
|
|
|
+
|
|
|
+ #####################################
|
|
|
+ # DNS Zones
|
|
|
+ hosted_public_dns_zones = [
|
|
|
+ "accenturefederalcyber.com",
|
|
|
+ "accenturefederalcyber.net",
|
|
|
+ "xdr.accenturefederalcyber.com",
|
|
|
+ "xdrtest.accenturefederalcyber.com",
|
|
|
+ ]
|
|
|
+ # Delegated zones are created in different accounts
|
|
|
+ delegated_public_dns_zones = {
|
|
|
+ "caasp.xdr.accenturefederalcyber.com" = [
|
|
|
+ "tbd1.awsdns-15.com.",
|
|
|
+ "tbd2.awsdns-15.com.",
|
|
|
+ "tbd3.awsdns-15.com.",
|
|
|
+ "tbd4.awsdns-15.com."
|
|
|
+ ]
|
|
|
+ }
|
|
|
|
|
|
# For testing
|
|
|
create_test_instance = false
|