From 9eb59cf962757f5bb2149a5a5464ce46dba2a6f0 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Mon, 29 Jul 2024 17:52:01 -0400 Subject: [PATCH] fix vars --- variables.tf | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/variables.tf b/variables.tf index aea4b07..272ee46 100644 --- a/variables.tf +++ b/variables.tf @@ -123,6 +123,27 @@ variable "aws_environment" { # DNS variables ################################################################### +variable "main_dns_vpcs" { + description = "Map of region and VPC ids of the vpc1-services in us-gov-west-1 and us-gov-east-1 for centralized DNS" + type = map(string) + default = { + "us-gov-east-1" = "vpc-070595c5b133243dd" + "us-gov-west-1" = "vpc-08b7b4db6a5ddf9c1" + } +} + +variable "main_dns_profile" { + description = "Profile name for AWS for the main DNS central account" + type = string + default = "269244441389-lab-gov-network-nonprod" +} + +# variable "dns_zone_description_prefix" { +# description = "Zone description with the org-project-program-environment" +# type = string +# default = "" +# } + variable "region_map" { description = "AWS region map" type = map(string) @@ -141,12 +162,3 @@ variable "route53_endpoints" { } } } - -#-- -# lab-gov -#-- -main_dns_vpcs = { - "us-gov-east-1" = "vpc-070595c5b133243dd" - "us-gov-west-1" = "vpc-08b7b4db6a5ddf9c1" -} -main_dns_profile = " "269244441389-lab-gov-network-nonprod"