Resource: aws_devicefarm_network_profile

Provides a resource to manage AWS Device Farm Network Profiles. ∂

Example Usage

resource "aws_devicefarm_project" "example" {
  name = "example"
}

resource "aws_devicefarm_network_profile" "example" {
  name        = "example"
  project_arn = aws_devicefarm_project.example.arn
}

Argument Reference

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import DeviceFarm Network Profiles using their ARN. For example:

import {
  to = aws_devicefarm_network_profile.example
  id = "arn:aws:devicefarm:us-west-2:123456789012:networkprofile:4fa784c7-ccb4-4dbf-ba4f-02198320daa1"
}

Using terraform import, import DeviceFarm Network Profiles using their ARN. For example:

% terraform import aws_devicefarm_network_profile.example arn:aws:devicefarm:us-west-2:123456789012:networkprofile:4fa784c7-ccb4-4dbf-ba4f-02198320daa1