diff --git a/deploy/outputs.tf b/deploy/outputs.tf index 2270e77..25b0cc4 100644 --- a/deploy/outputs.tf +++ b/deploy/outputs.tf @@ -7,24 +7,9 @@ output "vpc_id" { description = "The ID of the VPC" value = module.aws-ia_vpc.vpc_id } -output "nat_eip_1" { - description = "NAT 1 IP address" - value = module.aws-ia_vpc.nat_eip_1 -} - -output "nat_eip_2" { - description = " NAT 2 IP address" - value = module.aws-ia_vpc.nat_eip_2 -} - -output "nat_eip_3" { - description = " NAT 3 IP address" - value = module.aws-ia_vpc.nat_eip_3 -} - -output "nat_eip_4" { - description = " NAT 4 IP address" - value = module.aws-ia_vpc.nat_eip_4 +output "nat_eips" { + description = "NAT IP address" + value = module.aws-ia_vpc.nat_eips } output "private_subnet_route_tables" { diff --git a/deploy/variables.tf b/deploy/variables.tf index 2e1ad55..c36046b 100644 --- a/deploy/variables.tf +++ b/deploy/variables.tf @@ -82,6 +82,10 @@ variable "create_vpc" { default = true } +variable "region" { + description = "AWS region to create VPC in" + type = string +} variable "create_vpc_flow_logs" { description = "Controls if VPC logs should be created for the VPC" type = bool