Provides a resource to manage AWS Device Farm Projects.
For more information about Device Farm Projects, see the AWS Documentation on Device Farm Projects.
resource "aws_devicefarm_project" "awesome_devices" {
name = "my-device-farm"
}
name
- (Required) The name of the projectdefault_job_timeout_minutes
- (Optional) Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.tags
- (Optional) A map of tags to assign to the resource. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.This resource exports the following attributes in addition to the arguments above:
arn
- The Amazon Resource Name of this projecttags_all
- A map of tags assigned to the resource, including those inherited from the provider default_tags
configuration block.In Terraform v1.5.0 and later, use an import
block to import DeviceFarm Projects using their ARN. For example:
import {
to = aws_devicefarm_project.example
id = "arn:aws:devicefarm:us-west-2:123456789012:project:4fa784c7-ccb4-4dbf-ba4f-02198320daa1"
}
Using terraform import
, import DeviceFarm Projects using their ARN. For example:
% terraform import aws_devicefarm_project.example arn:aws:devicefarm:us-west-2:123456789012:project:4fa784c7-ccb4-4dbf-ba4f-02198320daa1