awscc_ec2_ipam (Resource)

Resource Schema of AWS::EC2::IPAM Type

Example Usage

Basic

resource "awscc_ec2_ipam" "example" {
  description = "example IPAM"

  tags = [{
    key   = "Modified By"
    value = "AWSCC"
  }]
}

Two operating regions

resource "awscc_ec2_ipam" "example" {
  description = "example IPAM"

  operating_regions = [
    {
      region_name = "us-east-1"
    },
    {
      region_name = "us-west-2"
    }
  ]

  tags = [{
    key   = "Modified By"
    value = "AWSCC"
  }]
}

Schema

Optional

Read-Only

Nested Schema for operating_regions

Required:

Nested Schema for tags

Required:

Import

Import is supported using the following syntax:

$ terraform import awscc_ec2_ipam.example <resource ID>