1. Packages
  2. AWS Classic
  3. API Docs
  4. ec2
  5. VpcIpamResourceDiscovery

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.ec2.VpcIpamResourceDiscovery

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    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=[aws.ec2.VpcIpamResourceDiscoveryOperatingRegionArgs(
            region_name=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

    new VpcIpamResourceDiscovery(name: string, args: VpcIpamResourceDiscoveryArgs, opts?: CustomResourceOptions);
    @overload
    def VpcIpamResourceDiscovery(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 description: Optional[str] = None,
                                 operating_regions: Optional[Sequence[VpcIpamResourceDiscoveryOperatingRegionArgs]] = None,
                                 tags: Optional[Mapping[str, str]] = None)
    @overload
    def VpcIpamResourceDiscovery(resource_name: str,
                                 args: VpcIpamResourceDiscoveryArgs,
                                 opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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:

    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.
    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 []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 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 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 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 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)
    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.
    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 string
    The name of the Region you want to add to the IPAM.
    RegionName string
    The name of the Region you want to add to the IPAM.
    regionName String
    The name of the Region you want to add to the IPAM.
    regionName 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.
    regionName 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
    

    Package Details

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

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi