2017-05-09 09:48:44 +02:00
|
|
|
---
|
|
|
|
layout: "aws"
|
|
|
|
page_title: "AWS: aws_devicefarm_project"
|
|
|
|
sidebar_current: "docs-aws-resource-devicefarm-project"
|
|
|
|
description: |-
|
|
|
|
Provides a Devicefarm project
|
|
|
|
---
|
|
|
|
|
2017-05-11 13:53:22 +02:00
|
|
|
# aws_devicefarm_project
|
2017-05-09 09:48:44 +02:00
|
|
|
|
|
|
|
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
|
2017-05-11 13:53:22 +02:00
|
|
|
resource "aws_devicefarm_project" "awesome_devices" {
|
|
|
|
name = "my-device-farm"
|
|
|
|
}
|
2017-05-09 09:48:44 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
2017-05-11 13:53:22 +02:00
|
|
|
* `name` - (Required) The name of the project
|
2017-05-09 09:48:44 +02:00
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
2017-05-11 13:53:22 +02:00
|
|
|
* `arn` - The Amazon Resource Name of this project
|
2017-05-09 09:48:44 +02:00
|
|
|
|
|
|
|
[aws-get-project]: http://docs.aws.amazon.com/devicefarm/latest/APIReference/API_GetProject.html
|