1. Packages
  2. AWS
  3. API Docs
  4. ec2
  5. VpcIpamResourceDiscovery
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.ec2.VpcIpamResourceDiscovery

Explore with Pulumi AI

Provides an IPAM Resource Discovery resource. IPAM Resource Discoveries are resources meant for multi-organization customers. If you wish to use a single IPAM across multiple orgs, a resource discovery can be created and shared from a subordinate organization to the management organizations IPAM delegated admin account. For a full deployment example, see aws.ec2.VpcIpamResourceDiscoveryAssociation resource.

Example Usage

Basic usage:

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const current = aws.getRegion({});
const main = new aws.ec2.VpcIpamResourceDiscovery("main", {
    description: "My IPAM Resource Discovery",
    operatingRegions: [{
        regionName: current.then(current => current.name),
    }],
    tags: {
        Test: "Main",
    },
});
Copy
import pulumi
import pulumi_aws as aws

current = aws.get_region()
main = aws.ec2.VpcIpamResourceDiscovery("main",
    description="My IPAM Resource Discovery",
    operating_regions=[{
        "region_name": current.name,
    }],
    tags={
        "Test": "Main",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
	"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 {
		current, err := aws.GetRegion(ctx, &aws.GetRegionArgs{}, nil)
		if err != nil {
			return err
		}
		_, err = ec2.NewVpcIpamResourceDiscovery(ctx, "main", &ec2.VpcIpamResourceDiscoveryArgs{
			Description: pulumi.String("My IPAM Resource Discovery"),
			OperatingRegions: ec2.VpcIpamResourceDiscoveryOperatingRegionArray{
				&ec2.VpcIpamResourceDiscoveryOperatingRegionArgs{
					RegionName: pulumi.String(current.Name),
				},
			},
			Tags: pulumi.StringMap{
				"Test": pulumi.String("Main"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var current = Aws.GetRegion.Invoke();

    var main = new Aws.Ec2.VpcIpamResourceDiscovery("main", new()
    {
        Description = "My IPAM Resource Discovery",
        OperatingRegions = new[]
        {
            new Aws.Ec2.Inputs.VpcIpamResourceDiscoveryOperatingRegionArgs
            {
                RegionName = current.Apply(getRegionResult => getRegionResult.Name),
            },
        },
        Tags = 
        {
            { "Test", "Main" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.AwsFunctions;
import com.pulumi.aws.inputs.GetRegionArgs;
import com.pulumi.aws.ec2.VpcIpamResourceDiscovery;
import com.pulumi.aws.ec2.VpcIpamResourceDiscoveryArgs;
import com.pulumi.aws.ec2.inputs.VpcIpamResourceDiscoveryOperatingRegionArgs;
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 current = AwsFunctions.getRegion(GetRegionArgs.builder()
            .build());

        var main = new VpcIpamResourceDiscovery("main", VpcIpamResourceDiscoveryArgs.builder()
            .description("My IPAM Resource Discovery")
            .operatingRegions(VpcIpamResourceDiscoveryOperatingRegionArgs.builder()
                .regionName(current.name())
                .build())
            .tags(Map.of("Test", "Main"))
            .build());

    }
}
Copy
resources:
  main:
    type: aws:ec2:VpcIpamResourceDiscovery
    properties:
      description: My IPAM Resource Discovery
      operatingRegions:
        - regionName: ${current.name}
      tags:
        Test: Main
variables:
  current:
    fn::invoke:
      function: aws:getRegion
      arguments: {}
Copy

Create VpcIpamResourceDiscovery Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VpcIpamResourceDiscovery(name: string, args: VpcIpamResourceDiscoveryArgs, opts?: CustomResourceOptions);
@overload
def VpcIpamResourceDiscovery(resource_name: str,
                             args: VpcIpamResourceDiscoveryArgs,
                             opts: Optional[ResourceOptions] = None)

@overload
def VpcIpamResourceDiscovery(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             operating_regions: Optional[Sequence[VpcIpamResourceDiscoveryOperatingRegionArgs]] = None,
                             description: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None)
func NewVpcIpamResourceDiscovery(ctx *Context, name string, args VpcIpamResourceDiscoveryArgs, opts ...ResourceOption) (*VpcIpamResourceDiscovery, error)
public VpcIpamResourceDiscovery(string name, VpcIpamResourceDiscoveryArgs args, CustomResourceOptions? opts = null)
public VpcIpamResourceDiscovery(String name, VpcIpamResourceDiscoveryArgs args)
public VpcIpamResourceDiscovery(String name, VpcIpamResourceDiscoveryArgs args, CustomResourceOptions options)
type: aws:ec2:VpcIpamResourceDiscovery
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VpcIpamResourceDiscoveryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VpcIpamResourceDiscoveryArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VpcIpamResourceDiscoveryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VpcIpamResourceDiscoveryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VpcIpamResourceDiscoveryArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var vpcIpamResourceDiscoveryResource = new Aws.Ec2.VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource", new()
{
    OperatingRegions = new[]
    {
        new Aws.Ec2.Inputs.VpcIpamResourceDiscoveryOperatingRegionArgs
        {
            RegionName = "string",
        },
    },
    Description = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := ec2.NewVpcIpamResourceDiscovery(ctx, "vpcIpamResourceDiscoveryResource", &ec2.VpcIpamResourceDiscoveryArgs{
	OperatingRegions: ec2.VpcIpamResourceDiscoveryOperatingRegionArray{
		&ec2.VpcIpamResourceDiscoveryOperatingRegionArgs{
			RegionName: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var vpcIpamResourceDiscoveryResource = new VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource", VpcIpamResourceDiscoveryArgs.builder()
    .operatingRegions(VpcIpamResourceDiscoveryOperatingRegionArgs.builder()
        .regionName("string")
        .build())
    .description("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
vpc_ipam_resource_discovery_resource = aws.ec2.VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource",
    operating_regions=[{
        "region_name": "string",
    }],
    description="string",
    tags={
        "string": "string",
    })
Copy
const vpcIpamResourceDiscoveryResource = new aws.ec2.VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource", {
    operatingRegions: [{
        regionName: "string",
    }],
    description: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:ec2:VpcIpamResourceDiscovery
properties:
    description: string
    operatingRegions:
        - regionName: string
    tags:
        string: string
Copy

VpcIpamResourceDiscovery Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VpcIpamResourceDiscovery resource accepts the following input properties:

OperatingRegions This property is required. List<VpcIpamResourceDiscoveryOperatingRegion>
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
Description string
A description for the IPAM Resource Discovery.
Tags Dictionary<string, string>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
OperatingRegions This property is required. []VpcIpamResourceDiscoveryOperatingRegionArgs
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
Description string
A description for the IPAM Resource Discovery.
Tags map[string]string
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
operatingRegions This property is required. List<VpcIpamResourceDiscoveryOperatingRegion>
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
description String
A description for the IPAM Resource Discovery.
tags Map<String,String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
operatingRegions This property is required. VpcIpamResourceDiscoveryOperatingRegion[]
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
description string
A description for the IPAM Resource Discovery.
tags {[key: string]: string}
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
operating_regions This property is required. Sequence[VpcIpamResourceDiscoveryOperatingRegionArgs]
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
description str
A description for the IPAM Resource Discovery.
tags Mapping[str, str]
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
operatingRegions This property is required. List<Property Map>
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
description String
A description for the IPAM Resource Discovery.
tags Map<String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the VpcIpamResourceDiscovery resource produces the following output properties:

Arn string
Amazon Resource Name (ARN) of IPAM Resource Discovery
Id string
The provider-assigned unique ID for this managed resource.
IpamResourceDiscoveryRegion string
The home region of the Resource Discovery
IsDefault bool
A boolean to identify if the Resource Discovery is the accounts default resource discovery
OwnerId string
The account ID for the account that manages the Resource Discovery
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
Amazon Resource Name (ARN) of IPAM Resource Discovery
Id string
The provider-assigned unique ID for this managed resource.
IpamResourceDiscoveryRegion string
The home region of the Resource Discovery
IsDefault bool
A boolean to identify if the Resource Discovery is the accounts default resource discovery
OwnerId string
The account ID for the account that manages the Resource Discovery
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) of IPAM Resource Discovery
id String
The provider-assigned unique ID for this managed resource.
ipamResourceDiscoveryRegion String
The home region of the Resource Discovery
isDefault Boolean
A boolean to identify if the Resource Discovery is the accounts default resource discovery
ownerId String
The account ID for the account that manages the Resource Discovery
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
Amazon Resource Name (ARN) of IPAM Resource Discovery
id string
The provider-assigned unique ID for this managed resource.
ipamResourceDiscoveryRegion string
The home region of the Resource Discovery
isDefault boolean
A boolean to identify if the Resource Discovery is the accounts default resource discovery
ownerId string
The account ID for the account that manages the Resource Discovery
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
Amazon Resource Name (ARN) of IPAM Resource Discovery
id str
The provider-assigned unique ID for this managed resource.
ipam_resource_discovery_region str
The home region of the Resource Discovery
is_default bool
A boolean to identify if the Resource Discovery is the accounts default resource discovery
owner_id str
The account ID for the account that manages the Resource Discovery
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) of IPAM Resource Discovery
id String
The provider-assigned unique ID for this managed resource.
ipamResourceDiscoveryRegion String
The home region of the Resource Discovery
isDefault Boolean
A boolean to identify if the Resource Discovery is the accounts default resource discovery
ownerId String
The account ID for the account that manages the Resource Discovery
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing VpcIpamResourceDiscovery Resource

Get an existing VpcIpamResourceDiscovery resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: VpcIpamResourceDiscoveryState, opts?: CustomResourceOptions): VpcIpamResourceDiscovery
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        description: Optional[str] = None,
        ipam_resource_discovery_region: Optional[str] = None,
        is_default: Optional[bool] = None,
        operating_regions: Optional[Sequence[VpcIpamResourceDiscoveryOperatingRegionArgs]] = None,
        owner_id: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> VpcIpamResourceDiscovery
func GetVpcIpamResourceDiscovery(ctx *Context, name string, id IDInput, state *VpcIpamResourceDiscoveryState, opts ...ResourceOption) (*VpcIpamResourceDiscovery, error)
public static VpcIpamResourceDiscovery Get(string name, Input<string> id, VpcIpamResourceDiscoveryState? state, CustomResourceOptions? opts = null)
public static VpcIpamResourceDiscovery get(String name, Output<String> id, VpcIpamResourceDiscoveryState state, CustomResourceOptions options)
resources:  _:    type: aws:ec2:VpcIpamResourceDiscovery    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
Amazon Resource Name (ARN) of IPAM Resource Discovery
Description string
A description for the IPAM Resource Discovery.
IpamResourceDiscoveryRegion string
The home region of the Resource Discovery
IsDefault bool
A boolean to identify if the Resource Discovery is the accounts default resource discovery
OperatingRegions List<VpcIpamResourceDiscoveryOperatingRegion>
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
OwnerId string
The account ID for the account that manages the Resource Discovery
Tags Dictionary<string, string>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
Amazon Resource Name (ARN) of IPAM Resource Discovery
Description string
A description for the IPAM Resource Discovery.
IpamResourceDiscoveryRegion string
The home region of the Resource Discovery
IsDefault bool
A boolean to identify if the Resource Discovery is the accounts default resource discovery
OperatingRegions []VpcIpamResourceDiscoveryOperatingRegionArgs
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
OwnerId string
The account ID for the account that manages the Resource Discovery
Tags map[string]string
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) of IPAM Resource Discovery
description String
A description for the IPAM Resource Discovery.
ipamResourceDiscoveryRegion String
The home region of the Resource Discovery
isDefault Boolean
A boolean to identify if the Resource Discovery is the accounts default resource discovery
operatingRegions List<VpcIpamResourceDiscoveryOperatingRegion>
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
ownerId String
The account ID for the account that manages the Resource Discovery
tags Map<String,String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
Amazon Resource Name (ARN) of IPAM Resource Discovery
description string
A description for the IPAM Resource Discovery.
ipamResourceDiscoveryRegion string
The home region of the Resource Discovery
isDefault boolean
A boolean to identify if the Resource Discovery is the accounts default resource discovery
operatingRegions VpcIpamResourceDiscoveryOperatingRegion[]
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
ownerId string
The account ID for the account that manages the Resource Discovery
tags {[key: string]: string}
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
Amazon Resource Name (ARN) of IPAM Resource Discovery
description str
A description for the IPAM Resource Discovery.
ipam_resource_discovery_region str
The home region of the Resource Discovery
is_default bool
A boolean to identify if the Resource Discovery is the accounts default resource discovery
operating_regions Sequence[VpcIpamResourceDiscoveryOperatingRegionArgs]
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
owner_id str
The account ID for the account that manages the Resource Discovery
tags Mapping[str, str]
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) of IPAM Resource Discovery
description String
A description for the IPAM Resource Discovery.
ipamResourceDiscoveryRegion String
The home region of the Resource Discovery
isDefault Boolean
A boolean to identify if the Resource Discovery is the accounts default resource discovery
operatingRegions List<Property Map>
Determines which regions the Resource Discovery will enable IPAM features for usage and monitoring. Locale is the Region where you want to make an IPAM pool available for allocations. You can only create pools with locales that match the operating Regions of the IPAM Resource Discovery. You can only create VPCs from a pool whose locale matches the VPC's Region. You specify a region using the region_name parameter. You must set your provider block region as an operating_region.
ownerId String
The account ID for the account that manages the Resource Discovery
tags Map<String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Supporting Types

VpcIpamResourceDiscoveryOperatingRegion
, VpcIpamResourceDiscoveryOperatingRegionArgs

RegionName This property is required. string
The name of the Region you want to add to the IPAM.
RegionName This property is required. string
The name of the Region you want to add to the IPAM.
regionName This property is required. String
The name of the Region you want to add to the IPAM.
regionName This property is required. string
The name of the Region you want to add to the IPAM.
region_name This property is required. str
The name of the Region you want to add to the IPAM.
regionName This property is required. String
The name of the Region you want to add to the IPAM.

Import

Using pulumi import, import IPAMs using the IPAM resource discovery id. For example:

$ pulumi import aws:ec2/vpcIpamResourceDiscovery:VpcIpamResourceDiscovery example ipam-res-disco-0178368ad2146a492
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.