disable NAT Gateway for subnets

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-11-04 20:43:39 +01:00
parent 21923f795e
commit a77df7224f
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module "subnets" {
vpc_id = module.vpc.vpc_id
igw_id = module.vpc.igw_id
cidr_block = module.vpc.vpc_cidr_block
nat_gateway_enabled = "true"
nat_gateway_enabled = "false" # This costs a LOT
map_public_ip_on_launch = "true"
}