From 3bec647358a1a273a3084f2c54eb254589d2bfc4 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 1 Mar 2024 08:03:42 -0500 Subject: [PATCH] add variablews for lab for route53, update main route53 tf --- .../1.28/variables.route53.tf | 8 ++++++++ .../1.28/variables.route53.tf.lab | 13 +++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 examples/full-cluster-tf-upgrade/1.28/variables.route53.tf.lab diff --git a/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf b/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf index 140e7f2..fc70623 100644 --- a/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf +++ b/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf @@ -4,13 +4,21 @@ variable "route53_endpoints" { default = { route53_main = { "account_id" = "057405694017" + "alias" = "ent-gov-network-prod" "us-gov-east-1" = "vpc-0871ba8a6040d623a" "us-gov-west-1" = "vpc-0f03ea065333f72c5" } route53_main_legacy = { "account_id" = "107742151971" + "alias" = "do2-govcloud" "us-gov-east-1" = "vpc-099a991da7c4eb8a5" "us-gov-west-1" = "vpc-77877a12" } + route53_main_dmz = { + "account_id" = "273715889907" + "alias" = "ent-gov-dmz-network-prod" + "us-gov-east-1" = "vpc-02f1a0a3b40843e4e" + "us-gov-west-1" = "vpc-0ce5930e94e434889" + } } } diff --git a/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf.lab b/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf.lab new file mode 100644 index 0000000..fbbfdbb --- /dev/null +++ b/examples/full-cluster-tf-upgrade/1.28/variables.route53.tf.lab @@ -0,0 +1,13 @@ +variable "route53_endpoints" { + description = "Map of target route53 endpoints (for inbound) central VPCs" + type = map(map(string)) + default = { + route53_main = { + "account_id" = "269244441389" + "alias" = "lab-gov-network-nonprod" + "us-gov-east-1" = "vpc-070595c5b133243dd" + "us-gov-west-1" = "vpc-08b7b4db6a5ddf9c1" + } + } +} +