Skip to content

Data Source: awsEc2CoipPools

Provides information for multiple EC2 Customer-Owned IP Pools, such as their identifiers.

Example Usage

The following shows outputting all COIP Pool Ids.

import * as cdktf from "cdktf";
/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as aws from "./.gen/providers/aws";
const dataAwsEc2CoipPoolsFoo = new aws.dataAwsEc2CoipPools.DataAwsEc2CoipPools(
  this,
  "foo",
  {}
);
const cdktfTerraformOutputFoo = new cdktf.TerraformOutput(this, "foo_1", {
  value: dataAwsEc2CoipPoolsFoo.ids,
});
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
cdktfTerraformOutputFoo.overrideLogicalId("foo");

Argument Reference

  • tags - (Optional) Mapping of tags, each pair of which must exactly match a pair on the desired aws_ec2_coip_pools.

  • filter - (Optional) Custom filter block as described below.

More complex filters can be expressed using one or more filter sub-blocks, which take the following arguments:

  • name - (Required) Name of the field to filter by, as defined by the underlying AWS API.

  • values - (Required) Set of values that are accepted for the given field. A COIP Pool will be selected if any one of the given values matches.

Attributes Reference

  • id - AWS Region.
  • poolIds - Set of COIP Pool Identifiers

Timeouts

Configuration options:

  • read - (Default 20M)