From f71a4cfea9f3b18703bc7478f9a36fce9bff7cba Mon Sep 17 00:00:00 2001 From: ae-ou Date: Wed, 3 Feb 2021 21:03:00 +0000 Subject: [PATCH] Updated the 'conditional creation' section of the README to mention that modules support the 'count' argument (as of Terraform 0.13). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f01416b12..dcb61ed97 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ If your organization requires a permissions boundary to be attached to the VPC F ## Conditional creation -Sometimes you need to have a way to create VPC resources conditionally but Terraform does not allow to use `count` inside `module` block, so the solution is to specify argument `create_vpc`. +Prior to Terraform 0.13, you were unable to specify `count` in a module block. If you wish to toggle the creation of the module's resources in an older (pre 0.13) version of Terraform, you can use the `create_vpc` argument. ```hcl # This VPC will not be created