github.com/hs0210/hashicorp-terraform@v0.11.12-beta1/website/intro/examples/count.markdown (about) 1 --- 2 layout: "intro" 3 page_title: "Count" 4 sidebar_current: "examples-count" 5 description: |- 6 The count parameter on resources can simplify configurations and let you scale resources by simply incrementing a number. 7 --- 8 9 # Count Example 10 11 [**Example Source Code**](https://github.com/terraform-providers/terraform-provider-aws/tree/master/examples/count) 12 13 The `count` parameter on resources can simplify configurations 14 and let you scale resources by simply incrementing a number. 15 16 Additionally, variables can be used to expand a list of resources 17 for use elsewhere. 18 19 As with all the examples, just copy and paste the example and run 20 `terraform apply` to see it work.