Try AWS Native preview for resources not in the classic version.
aws.ec2.VpcIpamResourceDiscovery
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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",
},
});
import pulumi
import pulumi_aws as aws
current = aws.get_region()
main = aws.ec2.VpcIpamResourceDiscovery("main",
description="My IPAM Resource Discovery",
operating_regions=[{
"regionName": current.name,
}],
tags={
"Test": "Main",
})
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, nil, 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
})
}
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" },
},
});
});
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();
var main = new VpcIpamResourceDiscovery("main", VpcIpamResourceDiscoveryArgs.builder()
.description("My IPAM Resource Discovery")
.operatingRegions(VpcIpamResourceDiscoveryOperatingRegionArgs.builder()
.regionName(current.applyValue(getRegionResult -> getRegionResult.name()))
.build())
.tags(Map.of("Test", "Main"))
.build());
}
}
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: {}
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 string
- The unique name of the resource.
- args VpcIpamResourceDiscoveryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args VpcIpamResourceDiscoveryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcIpamResourceDiscoveryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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" },
},
});
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"),
},
})
var vpcIpamResourceDiscoveryResource = new VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource", VpcIpamResourceDiscoveryArgs.builder()
.operatingRegions(VpcIpamResourceDiscoveryOperatingRegionArgs.builder()
.regionName("string")
.build())
.description("string")
.tags(Map.of("string", "string"))
.build());
vpc_ipam_resource_discovery_resource = aws.ec2.VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource",
operating_regions=[{
"regionName": "string",
}],
description="string",
tags={
"string": "string",
})
const vpcIpamResourceDiscoveryResource = new aws.ec2.VpcIpamResourceDiscovery("vpcIpamResourceDiscoveryResource", {
operatingRegions: [{
regionName: "string",
}],
description: "string",
tags: {
string: "string",
},
});
type: aws:ec2:VpcIpamResourceDiscovery
properties:
description: string
operatingRegions:
- regionName: string
tags:
string: string
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
The VpcIpamResourceDiscovery resource accepts the following input properties:
- Operating
Regions List<VpcIpam Resource Discovery Operating Region> - 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.
- 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.
- Operating
Regions []VpcIpam Resource Discovery Operating Region Args - 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.
- 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.
- operating
Regions List<VpcIpam Resource Discovery Operating Region> - 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.
- 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.
- operating
Regions VpcIpam Resource Discovery Operating Region[] - 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.
- {[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 Sequence[VpcIpam Resource Discovery Operating Region Args] - 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.
- 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.
- operating
Regions 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.
- 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.
- Ipam
Resource stringDiscovery Region - 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 string - The account ID for the account that manages the Resource Discovery
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipam
Resource stringDiscovery Region - 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 string - The account ID for the account that manages the Resource Discovery
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- id String
- The provider-assigned unique ID for this managed resource.
- ipam
Resource StringDiscovery Region - The home region of the Resource Discovery
- is
Default Boolean - A boolean to identify if the Resource Discovery is the accounts default resource discovery
- owner
Id String - The account ID for the account that manages the Resource Discovery
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- id string
- The provider-assigned unique ID for this managed resource.
- ipam
Resource stringDiscovery Region - The home region of the Resource Discovery
- is
Default boolean - A boolean to identify if the Resource Discovery is the accounts default resource discovery
- owner
Id string - The account ID for the account that manages the Resource Discovery
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- id str
- The provider-assigned unique ID for this managed resource.
- ipam_
resource_ strdiscovery_ region - 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
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- id String
- The provider-assigned unique ID for this managed resource.
- ipam
Resource StringDiscovery Region - The home region of the Resource Discovery
- is
Default Boolean - A boolean to identify if the Resource Discovery is the accounts default resource discovery
- owner
Id String - The account ID for the account that manages the Resource Discovery
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Arn string
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- Description string
- A description for the IPAM Resource Discovery.
- Ipam
Resource stringDiscovery Region - 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 List<VpcIpam Resource Discovery Operating Region> - 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 string - The account ID for the account that manages the Resource Discovery
- 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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- Description string
- A description for the IPAM Resource Discovery.
- Ipam
Resource stringDiscovery Region - 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 []VpcIpam Resource Discovery Operating Region Args - 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 string - The account ID for the account that manages the Resource Discovery
- 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- description String
- A description for the IPAM Resource Discovery.
- ipam
Resource StringDiscovery Region - The home region of the Resource Discovery
- is
Default Boolean - A boolean to identify if the Resource Discovery is the accounts default resource discovery
- operating
Regions List<VpcIpam Resource Discovery Operating Region> - 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 String - The account ID for the account that manages the Resource Discovery
- 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- description string
- A description for the IPAM Resource Discovery.
- ipam
Resource stringDiscovery Region - The home region of the Resource Discovery
- is
Default boolean - A boolean to identify if the Resource Discovery is the accounts default resource discovery
- operating
Regions VpcIpam Resource Discovery Operating Region[] - 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 string - The account ID for the account that manages the Resource Discovery
- {[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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- description str
- A description for the IPAM Resource Discovery.
- ipam_
resource_ strdiscovery_ region - 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[VpcIpam Resource Discovery Operating Region Args] - 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
- 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- Amazon Resource Name (ARN) of IPAM Resource Discovery
- description String
- A description for the IPAM Resource Discovery.
- ipam
Resource StringDiscovery Region - The home region of the Resource Discovery
- is
Default Boolean - A boolean to identify if the Resource Discovery is the accounts default resource discovery
- operating
Regions 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.
- owner
Id String - The account ID for the account that manages the Resource Discovery
- 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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
VpcIpamResourceDiscoveryOperatingRegion, VpcIpamResourceDiscoveryOperatingRegionArgs
- Region
Name string - The name of the Region you want to add to the IPAM.
- Region
Name string - The name of the Region you want to add to the IPAM.
- region
Name String - The name of the Region you want to add to the IPAM.
- region
Name string - The name of the Region you want to add to the IPAM.
- region_
name str - The name of the Region you want to add to the IPAM.
- region
Name 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
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.
Try AWS Native preview for resources not in the classic version.