terraform/website/source/intro/examples/count.markdown

21 lines
645 B
Markdown
Raw Normal View History

2014-07-28 19:43:00 +02:00
---
layout: "intro"
page_title: "Count"
sidebar_current: "examples-count"
2014-10-22 05:21:56 +02:00
description: |-
The count parameter on resources can simplify configurations and let you scale resources by simply incrementing a number.
2014-07-28 19:43:00 +02:00
---
# Count Example
[**Example Source Code**](https://github.com/hashicorp/terraform/tree/master/examples/aws-count)
The `count` parameter on resources can simplify configurations
2014-07-28 19:43:00 +02:00
and let you scale resources by simply incrementing a number.
Additionally, variables can be used to expand a list of resources
2014-07-28 19:43:00 +02:00
for use elsewhere.
As with all the examples, just copy and paste the example and run
`terraform apply` to see it work.