Skip to content

Commit

Permalink
Merge pull request #21 from aws-ia/fix_deploy_bugs
Browse files Browse the repository at this point in the history
Fix deploy bugs
  • Loading branch information
tonynv authored Sep 27, 2021
2 parents a8dd679 + 93f6a47 commit 7a1905f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
21 changes: 3 additions & 18 deletions deploy/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
4 changes: 4 additions & 0 deletions deploy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7a1905f

Please sign in to comment.