Resource Schema of AWS::EC2::IPAM Type
resource "awscc_ec2_ipam" "example" {
description = "example IPAM"
tags = [{
key = "Modified By"
value = "AWSCC"
}]
}
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"
}]
}
description
(String)operating_regions
(Attributes Set) The regions IPAM is enabled for. Allows pools to be created in these regions, as well as enabling monitoring (see below for nested schema)tags
(Attributes Set) An array of key-value pairs to apply to this resource. (see below for nested schema)tier
(String) The tier of the IPAM.arn
(String) The Amazon Resource Name (ARN) of the IPAM.default_resource_discovery_association_id
(String) The Id of the default association to the default resource discovery, created with this IPAM.default_resource_discovery_id
(String) The Id of the default resource discovery, created with this IPAM.id
(String) Uniquely identifies the resource.ipam_id
(String) Id of the IPAM.private_default_scope_id
(String) The Id of the default scope for publicly routable IP space, created with this IPAM.public_default_scope_id
(String) The Id of the default scope for publicly routable IP space, created with this IPAM.resource_discovery_association_count
(Number) The count of resource discoveries associated with this IPAM.scope_count
(Number) The number of scopes that currently exist in this IPAM.operating_regions
Required:
region_name
(String) The name of the region.tags
Required:
key
(String) The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.value
(String) The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.Import is supported using the following syntax:
$ terraform import awscc_ec2_ipam.example <resource ID>