Closed n8io closed 7 years ago
Prior to this change, only this input value would create NAT gateways:
module "vpc" { source = "github.com/terraform-community-modules/tf_aws_vpc" enable_nat_gateway = "true" ... }
After this change, any of these input values will create NAT gateways:
module "vpc" { source = "github.com/terraform-community-modules/tf_aws_vpc" enable_nat_gateway = "true" enable_nat_gateway = "1" enable_nat_gateway = true enable_nat_gateway = 1 ... }
...and conversly these will not create any NAT gateways:
module "vpc" { source = "github.com/terraform-community-modules/tf_aws_vpc" enable_nat_gateway = "false" enable_nat_gateway = "0" enable_nat_gateway = false enable_nat_gateway = 0 ... }
@williamtsoi1 saw you merged code recently. Can you review/merge?
LGTM - but I don't have access to merge this PR :(
Merged, the new release has been tagged as v1.0.10.
Prior to this change, only this input value would create NAT gateways:
After this change, any of these input values will create NAT gateways:
...and conversly these will not create any NAT gateways: