forked from hashicorp/terraform-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
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 devicefarm project resource
- Loading branch information
1 parent
2e4d0a5
commit 686c983
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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,36 @@ | ||
--- | ||
layout: "aws" | ||
page_title: "AWS: aws_devicefarm_project" | ||
sidebar_current: "docs-aws-resource-devicefarm-project" | ||
description: |- | ||
Provides a Devicefarm project | ||
--- | ||
|
||
# aws\_devicefarm\_project | ||
|
||
Provides a resource to manage AWS Device Farm Projects. | ||
Please keep in mind that this feature is only supported on the "us-west-2" region. | ||
This resource will error if you try to create a project in another region. | ||
|
||
For more information about Device Farm Projects, see the AWS Documentation on | ||
[Device Farm Projects][aws-get-project]. | ||
|
||
## Basic Example Usage | ||
|
||
|
||
```hcl | ||
resource "aws_devicefarm_project" "awesome_devices" | ||
``` | ||
|
||
## Argument Reference | ||
|
||
There are currently no other arguments besides the name supported. | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `name` - The name of the project | ||
* `arn` - The Amazon Resource Name of this project (computed) | ||
|
||
[aws-get-project]: http://docs.aws.amazon.com/devicefarm/latest/APIReference/API_GetProject.html |