github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/aws/r/devicefarm_project.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_devicefarm_project" 4 sidebar_current: "docs-aws-resource-devicefarm-project" 5 description: |- 6 Provides a Devicefarm project 7 --- 8 9 # aws_devicefarm_project 10 11 Provides a resource to manage AWS Device Farm Projects. 12 Please keep in mind that this feature is only supported on the "us-west-2" region. 13 This resource will error if you try to create a project in another region. 14 15 For more information about Device Farm Projects, see the AWS Documentation on 16 [Device Farm Projects][aws-get-project]. 17 18 ## Basic Example Usage 19 20 21 ```hcl 22 resource "aws_devicefarm_project" "awesome_devices" { 23 name = "my-device-farm" 24 } 25 ``` 26 27 ## Argument Reference 28 29 * `name` - (Required) The name of the project 30 31 ## Attributes Reference 32 33 The following attributes are exported: 34 35 * `arn` - The Amazon Resource Name of this project 36 37 [aws-get-project]: http://docs.aws.amazon.com/devicefarm/latest/APIReference/API_GetProject.html