GetCoipPool
Provides details about a specific EC2 Customer-Owned IP Pool.
This data source can prove useful when a module accepts a coip pool id as an input variable and needs to, for example, determine the CIDR block of that COIP Pool.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var config = new Config();
var coipPoolId = config.RequireObject<dynamic>("coipPoolId");
var selected = Output.Create(Aws.Ec2.GetCoipPool.InvokeAsync(new Aws.Ec2.GetCoipPoolArgs
{
Id = coipPoolId,
}));
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2.GetCoipPool(ctx, &ec2.GetCoipPoolArgs{
Id: coipPoolId,
}, nil)
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
config = pulumi.Config()
coip_pool_id = config.require_object("coipPoolId")
selected = aws.ec2.get_coip_pool(id=coip_pool_id)import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const config = new pulumi.Config();
const coipPoolId = config.require("coipPoolId");
const selected = pulumi.output(aws.ec2.getCoipPool({
id: coipPoolId,
}, { async: true }));Using GetCoipPool
function getCoipPool(args: GetCoipPoolArgs, opts?: InvokeOptions): Promise<GetCoipPoolResult>function get_coip_pool(filters=None, local_gateway_route_table_id=None, pool_id=None, tags=None, opts=None)func GetCoipPool(ctx *Context, args *GetCoipPoolArgs, opts ...InvokeOption) (*GetCoipPoolResult, error)public static class GetCoipPool {
public static Task<GetCoipPoolResult> InvokeAsync(GetCoipPoolArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Filters
List<Get
Coip Pool Filter Args> - Local
Gateway stringRoute Table Id Local Gateway Route Table Id assigned to desired COIP Pool
- Pool
Id string The id of the specific COIP Pool to retrieve.
- Dictionary<string, string>
A mapping of tags, each pair of which must exactly match a pair on the desired COIP Pool.
- Filters
[]Get
Coip Pool Filter - Local
Gateway stringRoute Table Id Local Gateway Route Table Id assigned to desired COIP Pool
- Pool
Id string The id of the specific COIP Pool to retrieve.
- map[string]string
A mapping of tags, each pair of which must exactly match a pair on the desired COIP Pool.
- filters
Get
Coip Pool Filter[] - local
Gateway stringRoute Table Id Local Gateway Route Table Id assigned to desired COIP Pool
- pool
Id string The id of the specific COIP Pool to retrieve.
- {[key: string]: string}
A mapping of tags, each pair of which must exactly match a pair on the desired COIP Pool.
- filters
List[Get
Coip Pool Filter] - local_
gateway_ strroute_ table_ id Local Gateway Route Table Id assigned to desired COIP Pool
- pool_
id str The id of the specific COIP Pool to retrieve.
- Dict[str, str]
A mapping of tags, each pair of which must exactly match a pair on the desired COIP Pool.
GetCoipPool Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Local
Gateway stringRoute Table Id - Pool
Cidrs List<string> Set of CIDR blocks in pool
- Pool
Id string - Dictionary<string, string>
- Filters
List<Get
Coip Pool Filter>
- Id string
The provider-assigned unique ID for this managed resource.
- Local
Gateway stringRoute Table Id - Pool
Cidrs []string Set of CIDR blocks in pool
- Pool
Id string - map[string]string
- Filters
[]Get
Coip Pool Filter
- id string
The provider-assigned unique ID for this managed resource.
- local
Gateway stringRoute Table Id - pool
Cidrs string[] Set of CIDR blocks in pool
- pool
Id string - {[key: string]: string}
- filters
Get
Coip Pool Filter[]
- id str
The provider-assigned unique ID for this managed resource.
- local_
gateway_ strroute_ table_ id - pool_
cidrs List[str] Set of CIDR blocks in pool
- pool_
id str - Dict[str, str]
- filters
List[Get
Coip Pool Filter]
Supporting Types
GetCoipPoolFilter
- Name string
The name of the field to filter by, as defined by the underlying AWS API.
- Values List<string>
Set of values that are accepted for the given field. A COIP Pool will be selected if any one of the given values matches.
- Name string
The name of the field to filter by, as defined by the underlying AWS API.
- Values []string
Set of values that are accepted for the given field. A COIP Pool will be selected if any one of the given values matches.
- name string
The name of the field to filter by, as defined by the underlying AWS API.
- values string[]
Set of values that are accepted for the given field. A COIP Pool will be selected if any one of the given values matches.
- name str
The name of the field to filter by, as defined by the underlying AWS API.
- values List[str]
Set of values that are accepted for the given field. A COIP Pool will be selected if any one of the given values matches.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.