-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provider/aws: Add docs for aws_placement_group
- Loading branch information
Radek Simko
committed
Oct 8, 2015
1 parent
f30c647
commit b23e545
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
website/source/docs/providers/aws/r/placement_group.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
layout: "aws" | ||
page_title: "AWS: aws_placement_group" | ||
sidebar_current: "docs-aws-resource-placement-group" | ||
description: |- | ||
Provides an EC2 placement group. | ||
--- | ||
|
||
# aws\_placement\_group | ||
|
||
Provides an EC2 placement group. Read more about placement groups | ||
in [AWS Docs](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html). | ||
|
||
## Example Usage | ||
|
||
``` | ||
resource "aws_placement_group" "web" { | ||
name = "hunky-dory-pg" | ||
strategy = "cluster" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `name` - (Required) The name of the placement group. | ||
* `strategy` - (Required) The placement strategy. The only supported value is `cluster` | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `id` - The name of the placement group. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters