aws.ec2.getVpcIpams
Explore with Pulumi AI
Data source for managing VPC IPAMs.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.ec2.getVpcIpams({
ipamIds: ["ipam-abcd1234"],
});
import pulumi
import pulumi_aws as aws
example = aws.ec2.get_vpc_ipams(ipam_ids=["ipam-abcd1234"])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2.GetVpcIpams(ctx, &ec2.GetVpcIpamsArgs{
IpamIds: []string{
"ipam-abcd1234",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Ec2.GetVpcIpams.Invoke(new()
{
IpamIds = new[]
{
"ipam-abcd1234",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.Ec2Functions;
import com.pulumi.aws.ec2.inputs.GetVpcIpamsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = Ec2Functions.getVpcIpams(GetVpcIpamsArgs.builder()
.ipamIds("ipam-abcd1234")
.build());
}
}
variables:
example:
fn::invoke:
function: aws:ec2:getVpcIpams
arguments:
ipamIds:
- ipam-abcd1234
Filter by tags
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.ec2.getVpcIpams({
filters: [{
name: "tags.Some",
values: ["Value"],
}],
});
import pulumi
import pulumi_aws as aws
example = aws.ec2.get_vpc_ipams(filters=[{
"name": "tags.Some",
"values": ["Value"],
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2.GetVpcIpams(ctx, &ec2.GetVpcIpamsArgs{
Filters: []ec2.GetVpcIpamsFilter{
{
Name: "tags.Some",
Values: []string{
"Value",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Ec2.GetVpcIpams.Invoke(new()
{
Filters = new[]
{
new Aws.Ec2.Inputs.GetVpcIpamsFilterInputArgs
{
Name = "tags.Some",
Values = new[]
{
"Value",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.Ec2Functions;
import com.pulumi.aws.ec2.inputs.GetVpcIpamsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = Ec2Functions.getVpcIpams(GetVpcIpamsArgs.builder()
.filters(GetVpcIpamsFilterArgs.builder()
.name("tags.Some")
.values("Value")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: aws:ec2:getVpcIpams
arguments:
filters:
- name: tags.Some
values:
- Value
Filter by tier
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.ec2.getVpcIpams({
filters: [{
name: "tier",
values: ["free"],
}],
});
import pulumi
import pulumi_aws as aws
example = aws.ec2.get_vpc_ipams(filters=[{
"name": "tier",
"values": ["free"],
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2.GetVpcIpams(ctx, &ec2.GetVpcIpamsArgs{
Filters: []ec2.GetVpcIpamsFilter{
{
Name: "tier",
Values: []string{
"free",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Ec2.GetVpcIpams.Invoke(new()
{
Filters = new[]
{
new Aws.Ec2.Inputs.GetVpcIpamsFilterInputArgs
{
Name = "tier",
Values = new[]
{
"free",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.Ec2Functions;
import com.pulumi.aws.ec2.inputs.GetVpcIpamsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = Ec2Functions.getVpcIpams(GetVpcIpamsArgs.builder()
.filters(GetVpcIpamsFilterArgs.builder()
.name("tier")
.values("free")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: aws:ec2:getVpcIpams
arguments:
filters:
- name: tier
values:
- free
Using getVpcIpams
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getVpcIpams(args: GetVpcIpamsArgs, opts?: InvokeOptions): Promise<GetVpcIpamsResult>
function getVpcIpamsOutput(args: GetVpcIpamsOutputArgs, opts?: InvokeOptions): Output<GetVpcIpamsResult>
def get_vpc_ipams(filters: Optional[Sequence[GetVpcIpamsFilter]] = None,
ipam_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetVpcIpamsResult
def get_vpc_ipams_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetVpcIpamsFilterArgs]]]] = None,
ipam_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVpcIpamsResult]
func GetVpcIpams(ctx *Context, args *GetVpcIpamsArgs, opts ...InvokeOption) (*GetVpcIpamsResult, error)
func GetVpcIpamsOutput(ctx *Context, args *GetVpcIpamsOutputArgs, opts ...InvokeOption) GetVpcIpamsResultOutput
> Note: This function is named GetVpcIpams
in the Go SDK.
public static class GetVpcIpams
{
public static Task<GetVpcIpamsResult> InvokeAsync(GetVpcIpamsArgs args, InvokeOptions? opts = null)
public static Output<GetVpcIpamsResult> Invoke(GetVpcIpamsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVpcIpamsResult> getVpcIpams(GetVpcIpamsArgs args, InvokeOptions options)
public static Output<GetVpcIpamsResult> getVpcIpams(GetVpcIpamsArgs args, InvokeOptions options)
fn::invoke:
function: aws:ec2/getVpcIpams:getVpcIpams
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Vpc Ipams Filter> Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- Ipam
Ids List<string> - IDs of the IPAM resources to query for.
- Filters
[]Get
Vpc Ipams Filter Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- Ipam
Ids []string - IDs of the IPAM resources to query for.
- filters
List<Get
Vpc Ipams Filter> Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- ipam
Ids List<String> - IDs of the IPAM resources to query for.
- filters
Get
Vpc Ipams Filter[] Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- ipam
Ids string[] - IDs of the IPAM resources to query for.
- filters
Sequence[Get
Vpc Ipams Filter] Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- ipam_
ids Sequence[str] - IDs of the IPAM resources to query for.
- filters List<Property Map>
Custom filter block as described below.
More complex filters can be expressed using one or more
filter
sub-blocks, which take the following arguments:- ipam
Ids List<String> - IDs of the IPAM resources to query for.
getVpcIpams Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipams
List<Get
Vpc Ipams Ipam> - List of IPAM resources matching the provided arguments.
- Filters
List<Get
Vpc Ipams Filter> - Ipam
Ids List<string>
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipams
[]Get
Vpc Ipams Ipam - List of IPAM resources matching the provided arguments.
- Filters
[]Get
Vpc Ipams Filter - Ipam
Ids []string
- id String
- The provider-assigned unique ID for this managed resource.
- ipams
List<Get
Vpc Ipams Ipam> - List of IPAM resources matching the provided arguments.
- filters
List<Get
Vpc Ipams Filter> - ipam
Ids List<String>
- id string
- The provider-assigned unique ID for this managed resource.
- ipams
Get
Vpc Ipams Ipam[] - List of IPAM resources matching the provided arguments.
- filters
Get
Vpc Ipams Filter[] - ipam
Ids string[]
- id str
- The provider-assigned unique ID for this managed resource.
- ipams
Sequence[Get
Vpc Ipams Ipam] - List of IPAM resources matching the provided arguments.
- filters
Sequence[Get
Vpc Ipams Filter] - ipam_
ids Sequence[str]
- id String
- The provider-assigned unique ID for this managed resource.
- ipams List<Property Map>
- List of IPAM resources matching the provided arguments.
- filters List<Property Map>
- ipam
Ids List<String>
Supporting Types
GetVpcIpamsFilter
- Name string
- 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. An IPAM resource will be selected if any one of the given values matches.
- Name string
- 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. An IPAM resource will be selected if any one of the given values matches.
- name String
- 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. An IPAM resource will be selected if any one of the given values matches.
- name string
- 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. An IPAM resource will be selected if any one of the given values matches.
- name str
- Name of the field to filter by, as defined by the underlying AWS API.
- values Sequence[str]
- Set of values that are accepted for the given field. An IPAM resource will be selected if any one of the given values matches.
- name String
- 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. An IPAM resource will be selected if any one of the given values matches.
GetVpcIpamsIpam
- Arn string
- ARN of the IPAM.
- Default
Resource stringDiscovery Association Id - The default resource discovery association ID.
- Default
Resource stringDiscovery Id - The default resource discovery ID.
- Description string
- Description for the IPAM.
- Enable
Private boolGua - If private GUA is enabled.
- Id string
- ID of the IPAM resource.
- Ipam
Region string - Region that the IPAM exists in.
- Operating
Regions List<GetVpc Ipams Ipam Operating Region> - Regions that the IPAM is configured to operate in.
- Owner
Id string - ID of the account that owns this IPAM.
- Private
Default stringScope Id - ID of the default private scope.
- Public
Default stringScope Id - ID of the default public scope.
- Resource
Discovery intAssociation Count - Number of resource discovery associations.
- Scope
Count int - Number of scopes on this IPAM.
- State string
- Current state of the IPAM.
- State
Message string - State message of the IPAM.
- Tier string
- IPAM Tier.
- Arn string
- ARN of the IPAM.
- Default
Resource stringDiscovery Association Id - The default resource discovery association ID.
- Default
Resource stringDiscovery Id - The default resource discovery ID.
- Description string
- Description for the IPAM.
- Enable
Private boolGua - If private GUA is enabled.
- Id string
- ID of the IPAM resource.
- Ipam
Region string - Region that the IPAM exists in.
- Operating
Regions []GetVpc Ipams Ipam Operating Region - Regions that the IPAM is configured to operate in.
- Owner
Id string - ID of the account that owns this IPAM.
- Private
Default stringScope Id - ID of the default private scope.
- Public
Default stringScope Id - ID of the default public scope.
- Resource
Discovery intAssociation Count - Number of resource discovery associations.
- Scope
Count int - Number of scopes on this IPAM.
- State string
- Current state of the IPAM.
- State
Message string - State message of the IPAM.
- Tier string
- IPAM Tier.
- arn String
- ARN of the IPAM.
- default
Resource StringDiscovery Association Id - The default resource discovery association ID.
- default
Resource StringDiscovery Id - The default resource discovery ID.
- description String
- Description for the IPAM.
- enable
Private BooleanGua - If private GUA is enabled.
- id String
- ID of the IPAM resource.
- ipam
Region String - Region that the IPAM exists in.
- operating
Regions List<GetVpc Ipams Ipam Operating Region> - Regions that the IPAM is configured to operate in.
- owner
Id String - ID of the account that owns this IPAM.
- private
Default StringScope Id - ID of the default private scope.
- public
Default StringScope Id - ID of the default public scope.
- resource
Discovery IntegerAssociation Count - Number of resource discovery associations.
- scope
Count Integer - Number of scopes on this IPAM.
- state String
- Current state of the IPAM.
- state
Message String - State message of the IPAM.
- tier String
- IPAM Tier.
- arn string
- ARN of the IPAM.
- default
Resource stringDiscovery Association Id - The default resource discovery association ID.
- default
Resource stringDiscovery Id - The default resource discovery ID.
- description string
- Description for the IPAM.
- enable
Private booleanGua - If private GUA is enabled.
- id string
- ID of the IPAM resource.
- ipam
Region string - Region that the IPAM exists in.
- operating
Regions GetVpc Ipams Ipam Operating Region[] - Regions that the IPAM is configured to operate in.
- owner
Id string - ID of the account that owns this IPAM.
- private
Default stringScope Id - ID of the default private scope.
- public
Default stringScope Id - ID of the default public scope.
- resource
Discovery numberAssociation Count - Number of resource discovery associations.
- scope
Count number - Number of scopes on this IPAM.
- state string
- Current state of the IPAM.
- state
Message string - State message of the IPAM.
- tier string
- IPAM Tier.
- arn str
- ARN of the IPAM.
- default_
resource_ strdiscovery_ association_ id - The default resource discovery association ID.
- default_
resource_ strdiscovery_ id - The default resource discovery ID.
- description str
- Description for the IPAM.
- enable_
private_ boolgua - If private GUA is enabled.
- id str
- ID of the IPAM resource.
- ipam_
region str - Region that the IPAM exists in.
- operating_
regions Sequence[GetVpc Ipams Ipam Operating Region] - Regions that the IPAM is configured to operate in.
- owner_
id str - ID of the account that owns this IPAM.
- private_
default_ strscope_ id - ID of the default private scope.
- public_
default_ strscope_ id - ID of the default public scope.
- resource_
discovery_ intassociation_ count - Number of resource discovery associations.
- scope_
count int - Number of scopes on this IPAM.
- state str
- Current state of the IPAM.
- state_
message str - State message of the IPAM.
- tier str
- IPAM Tier.
- arn String
- ARN of the IPAM.
- default
Resource StringDiscovery Association Id - The default resource discovery association ID.
- default
Resource StringDiscovery Id - The default resource discovery ID.
- description String
- Description for the IPAM.
- enable
Private BooleanGua - If private GUA is enabled.
- id String
- ID of the IPAM resource.
- ipam
Region String - Region that the IPAM exists in.
- operating
Regions List<Property Map> - Regions that the IPAM is configured to operate in.
- owner
Id String - ID of the account that owns this IPAM.
- private
Default StringScope Id - ID of the default private scope.
- public
Default StringScope Id - ID of the default public scope.
- resource
Discovery NumberAssociation Count - Number of resource discovery associations.
- scope
Count Number - Number of scopes on this IPAM.
- state String
- Current state of the IPAM.
- state
Message String - State message of the IPAM.
- tier String
- IPAM Tier.
GetVpcIpamsIpamOperatingRegion
- Region
Name string
- Region
Name string
- region
Name String
- region
Name string
- region_
name str
- region
Name String
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.