Skip to content

Commit

Permalink
fix vars
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 30, 2024
1 parent de3c494 commit 9eb59cf
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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"

0 comments on commit 9eb59cf

Please sign in to comment.