Closed nyambati closed 7 years ago
When building a VPC you may require to add RDS instances into your infrastructure. This might require isolated private subnet groups apart from the existing ones. Below are the changes introduced by this PR.
module "vpc" { ... database_subnets = ["10.0.90.0/24", "10.0.91.0/24", "10.0.92.0/24"] .... }
Terraform will only provision these resources only when the variable database_subnets is provided.
database_subnets
Also, please update README.
@antonbabenko I have made the updates, It should be all good now. Thanks for the review.
Would someone mind tagging a new release?
Done. https://github.com/terraform-community-modules/tf_aws_vpc/releases/tag/v1.0.3
Changes introduces by this PR
When building a VPC you may require to add RDS instances into your infrastructure. This might require isolated private subnet groups apart from the existing ones. Below are the changes introduced by this PR.
usage
Terraform will only provision these resources only when the variable
database_subnets
is provided.