1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. vpc
  5. SnatEntry
Alibaba Cloud v3.44.0 published on Thursday, Sep 28, 2023 by Pulumi

alicloud.vpc.SnatEntry

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.44.0 published on Thursday, Sep 28, 2023 by Pulumi

    Provides a snat resource.

    NOTE: Available since v1.119.0.

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf_example";
        var defaultZones = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = name,
            CidrBlock = "172.16.0.0/12",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
        {
            VpcId = defaultNetwork.Id,
            CidrBlock = "172.16.0.0/21",
            ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
            VswitchName = name,
        });
    
        var defaultNatGateway = new AliCloud.Vpc.NatGateway("defaultNatGateway", new()
        {
            VpcId = defaultNetwork.Id,
            NatGatewayName = name,
            PaymentType = "PayAsYouGo",
            VswitchId = defaultSwitch.Id,
            NatType = "Enhanced",
        });
    
        var defaultEipAddress = new AliCloud.Ecs.EipAddress("defaultEipAddress", new()
        {
            AddressName = name,
        });
    
        var defaultEipAssociation = new AliCloud.Ecs.EipAssociation("defaultEipAssociation", new()
        {
            AllocationId = defaultEipAddress.Id,
            InstanceId = defaultNatGateway.Id,
        });
    
        var defaultSnatEntry = new AliCloud.Vpc.SnatEntry("defaultSnatEntry", new()
        {
            SnatTableId = defaultNatGateway.SnatTableIds,
            SourceVswitchId = defaultSwitch.Id,
            SnatIp = defaultEipAddress.IpAddress,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "tf_example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		defaultZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String(name),
    			CidrBlock: pulumi.String("172.16.0.0/12"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
    			VpcId:       defaultNetwork.ID(),
    			CidrBlock:   pulumi.String("172.16.0.0/21"),
    			ZoneId:      *pulumi.String(defaultZones.Zones[0].Id),
    			VswitchName: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		defaultNatGateway, err := vpc.NewNatGateway(ctx, "defaultNatGateway", &vpc.NatGatewayArgs{
    			VpcId:          defaultNetwork.ID(),
    			NatGatewayName: pulumi.String(name),
    			PaymentType:    pulumi.String("PayAsYouGo"),
    			VswitchId:      defaultSwitch.ID(),
    			NatType:        pulumi.String("Enhanced"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultEipAddress, err := ecs.NewEipAddress(ctx, "defaultEipAddress", &ecs.EipAddressArgs{
    			AddressName: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ecs.NewEipAssociation(ctx, "defaultEipAssociation", &ecs.EipAssociationArgs{
    			AllocationId: defaultEipAddress.ID(),
    			InstanceId:   defaultNatGateway.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = vpc.NewSnatEntry(ctx, "defaultSnatEntry", &vpc.SnatEntryArgs{
    			SnatTableId:     defaultNatGateway.SnatTableIds,
    			SourceVswitchId: defaultSwitch.ID(),
    			SnatIp:          defaultEipAddress.IpAddress,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.vpc.NatGateway;
    import com.pulumi.alicloud.vpc.NatGatewayArgs;
    import com.pulumi.alicloud.ecs.EipAddress;
    import com.pulumi.alicloud.ecs.EipAddressArgs;
    import com.pulumi.alicloud.ecs.EipAssociation;
    import com.pulumi.alicloud.ecs.EipAssociationArgs;
    import com.pulumi.alicloud.vpc.SnatEntry;
    import com.pulumi.alicloud.vpc.SnatEntryArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("tf_example");
            final var defaultZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableResourceCreation("VSwitch")
                .build());
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()        
                .vpcName(name)
                .cidrBlock("172.16.0.0/12")
                .build());
    
            var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()        
                .vpcId(defaultNetwork.id())
                .cidrBlock("172.16.0.0/21")
                .zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .vswitchName(name)
                .build());
    
            var defaultNatGateway = new NatGateway("defaultNatGateway", NatGatewayArgs.builder()        
                .vpcId(defaultNetwork.id())
                .natGatewayName(name)
                .paymentType("PayAsYouGo")
                .vswitchId(defaultSwitch.id())
                .natType("Enhanced")
                .build());
    
            var defaultEipAddress = new EipAddress("defaultEipAddress", EipAddressArgs.builder()        
                .addressName(name)
                .build());
    
            var defaultEipAssociation = new EipAssociation("defaultEipAssociation", EipAssociationArgs.builder()        
                .allocationId(defaultEipAddress.id())
                .instanceId(defaultNatGateway.id())
                .build());
    
            var defaultSnatEntry = new SnatEntry("defaultSnatEntry", SnatEntryArgs.builder()        
                .snatTableId(defaultNatGateway.snatTableIds())
                .sourceVswitchId(defaultSwitch.id())
                .snatIp(defaultEipAddress.ipAddress())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf_example"
    default_zones = alicloud.get_zones(available_resource_creation="VSwitch")
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name=name,
        cidr_block="172.16.0.0/12")
    default_switch = alicloud.vpc.Switch("defaultSwitch",
        vpc_id=default_network.id,
        cidr_block="172.16.0.0/21",
        zone_id=default_zones.zones[0].id,
        vswitch_name=name)
    default_nat_gateway = alicloud.vpc.NatGateway("defaultNatGateway",
        vpc_id=default_network.id,
        nat_gateway_name=name,
        payment_type="PayAsYouGo",
        vswitch_id=default_switch.id,
        nat_type="Enhanced")
    default_eip_address = alicloud.ecs.EipAddress("defaultEipAddress", address_name=name)
    default_eip_association = alicloud.ecs.EipAssociation("defaultEipAssociation",
        allocation_id=default_eip_address.id,
        instance_id=default_nat_gateway.id)
    default_snat_entry = alicloud.vpc.SnatEntry("defaultSnatEntry",
        snat_table_id=default_nat_gateway.snat_table_ids,
        source_vswitch_id=default_switch.id,
        snat_ip=default_eip_address.ip_address)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf_example";
    const defaultZones = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: name,
        cidrBlock: "172.16.0.0/12",
    });
    const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
        vpcId: defaultNetwork.id,
        cidrBlock: "172.16.0.0/21",
        zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
        vswitchName: name,
    });
    const defaultNatGateway = new alicloud.vpc.NatGateway("defaultNatGateway", {
        vpcId: defaultNetwork.id,
        natGatewayName: name,
        paymentType: "PayAsYouGo",
        vswitchId: defaultSwitch.id,
        natType: "Enhanced",
    });
    const defaultEipAddress = new alicloud.ecs.EipAddress("defaultEipAddress", {addressName: name});
    const defaultEipAssociation = new alicloud.ecs.EipAssociation("defaultEipAssociation", {
        allocationId: defaultEipAddress.id,
        instanceId: defaultNatGateway.id,
    });
    const defaultSnatEntry = new alicloud.vpc.SnatEntry("defaultSnatEntry", {
        snatTableId: defaultNatGateway.snatTableIds,
        sourceVswitchId: defaultSwitch.id,
        snatIp: defaultEipAddress.ipAddress,
    });
    
    configuration:
      name:
        type: string
        default: tf_example
    resources:
      defaultNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: ${name}
          cidrBlock: 172.16.0.0/12
      defaultSwitch:
        type: alicloud:vpc:Switch
        properties:
          vpcId: ${defaultNetwork.id}
          cidrBlock: 172.16.0.0/21
          zoneId: ${defaultZones.zones[0].id}
          vswitchName: ${name}
      defaultNatGateway:
        type: alicloud:vpc:NatGateway
        properties:
          vpcId: ${defaultNetwork.id}
          natGatewayName: ${name}
          paymentType: PayAsYouGo
          vswitchId: ${defaultSwitch.id}
          natType: Enhanced
      defaultEipAddress:
        type: alicloud:ecs:EipAddress
        properties:
          addressName: ${name}
      defaultEipAssociation:
        type: alicloud:ecs:EipAssociation
        properties:
          allocationId: ${defaultEipAddress.id}
          instanceId: ${defaultNatGateway.id}
      defaultSnatEntry:
        type: alicloud:vpc:SnatEntry
        properties:
          snatTableId: ${defaultNatGateway.snatTableIds}
          sourceVswitchId: ${defaultSwitch.id}
          snatIp: ${defaultEipAddress.ipAddress}
    variables:
      defaultZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create SnatEntry Resource

    new SnatEntry(name: string, args: SnatEntryArgs, opts?: CustomResourceOptions);
    @overload
    def SnatEntry(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  snat_entry_name: Optional[str] = None,
                  snat_ip: Optional[str] = None,
                  snat_table_id: Optional[str] = None,
                  source_cidr: Optional[str] = None,
                  source_vswitch_id: Optional[str] = None)
    @overload
    def SnatEntry(resource_name: str,
                  args: SnatEntryArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewSnatEntry(ctx *Context, name string, args SnatEntryArgs, opts ...ResourceOption) (*SnatEntry, error)
    public SnatEntry(string name, SnatEntryArgs args, CustomResourceOptions? opts = null)
    public SnatEntry(String name, SnatEntryArgs args)
    public SnatEntry(String name, SnatEntryArgs args, CustomResourceOptions options)
    
    type: alicloud:vpc:SnatEntry
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args SnatEntryArgs
    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 SnatEntryArgs
    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 SnatEntryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SnatEntryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SnatEntryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    SnatEntry 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 SnatEntry resource accepts the following input properties:

    SnatIp string

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    SnatTableId string

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    SnatEntryName string

    The name of snat entry.

    SourceCidr string

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    SourceVswitchId string

    The vswitch ID.

    SnatIp string

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    SnatTableId string

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    SnatEntryName string

    The name of snat entry.

    SourceCidr string

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    SourceVswitchId string

    The vswitch ID.

    snatIp String

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snatTableId String

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    snatEntryName String

    The name of snat entry.

    sourceCidr String

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    sourceVswitchId String

    The vswitch ID.

    snatIp string

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snatTableId string

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    snatEntryName string

    The name of snat entry.

    sourceCidr string

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    sourceVswitchId string

    The vswitch ID.

    snat_ip str

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snat_table_id str

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    snat_entry_name str

    The name of snat entry.

    source_cidr str

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    source_vswitch_id str

    The vswitch ID.

    snatIp String

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snatTableId String

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    snatEntryName String

    The name of snat entry.

    sourceCidr String

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    sourceVswitchId String

    The vswitch ID.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    SnatEntryId string

    The id of the snat entry on the server.

    Status string

    (Available since v1.119.1) The status of snat entry.

    Id string

    The provider-assigned unique ID for this managed resource.

    SnatEntryId string

    The id of the snat entry on the server.

    Status string

    (Available since v1.119.1) The status of snat entry.

    id String

    The provider-assigned unique ID for this managed resource.

    snatEntryId String

    The id of the snat entry on the server.

    status String

    (Available since v1.119.1) The status of snat entry.

    id string

    The provider-assigned unique ID for this managed resource.

    snatEntryId string

    The id of the snat entry on the server.

    status string

    (Available since v1.119.1) The status of snat entry.

    id str

    The provider-assigned unique ID for this managed resource.

    snat_entry_id str

    The id of the snat entry on the server.

    status str

    (Available since v1.119.1) The status of snat entry.

    id String

    The provider-assigned unique ID for this managed resource.

    snatEntryId String

    The id of the snat entry on the server.

    status String

    (Available since v1.119.1) The status of snat entry.

    Look up Existing SnatEntry Resource

    Get an existing SnatEntry 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?: SnatEntryState, opts?: CustomResourceOptions): SnatEntry
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            snat_entry_id: Optional[str] = None,
            snat_entry_name: Optional[str] = None,
            snat_ip: Optional[str] = None,
            snat_table_id: Optional[str] = None,
            source_cidr: Optional[str] = None,
            source_vswitch_id: Optional[str] = None,
            status: Optional[str] = None) -> SnatEntry
    func GetSnatEntry(ctx *Context, name string, id IDInput, state *SnatEntryState, opts ...ResourceOption) (*SnatEntry, error)
    public static SnatEntry Get(string name, Input<string> id, SnatEntryState? state, CustomResourceOptions? opts = null)
    public static SnatEntry get(String name, Output<String> id, SnatEntryState 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:
    SnatEntryId string

    The id of the snat entry on the server.

    SnatEntryName string

    The name of snat entry.

    SnatIp string

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    SnatTableId string

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    SourceCidr string

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    SourceVswitchId string

    The vswitch ID.

    Status string

    (Available since v1.119.1) The status of snat entry.

    SnatEntryId string

    The id of the snat entry on the server.

    SnatEntryName string

    The name of snat entry.

    SnatIp string

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    SnatTableId string

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    SourceCidr string

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    SourceVswitchId string

    The vswitch ID.

    Status string

    (Available since v1.119.1) The status of snat entry.

    snatEntryId String

    The id of the snat entry on the server.

    snatEntryName String

    The name of snat entry.

    snatIp String

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snatTableId String

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    sourceCidr String

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    sourceVswitchId String

    The vswitch ID.

    status String

    (Available since v1.119.1) The status of snat entry.

    snatEntryId string

    The id of the snat entry on the server.

    snatEntryName string

    The name of snat entry.

    snatIp string

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snatTableId string

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    sourceCidr string

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    sourceVswitchId string

    The vswitch ID.

    status string

    (Available since v1.119.1) The status of snat entry.

    snat_entry_id str

    The id of the snat entry on the server.

    snat_entry_name str

    The name of snat entry.

    snat_ip str

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snat_table_id str

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    source_cidr str

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    source_vswitch_id str

    The vswitch ID.

    status str

    (Available since v1.119.1) The status of snat entry.

    snatEntryId String

    The id of the snat entry on the server.

    snatEntryName String

    The name of snat entry.

    snatIp String

    The SNAT ip address, the ip must along bandwidth package public ip which alicloud.vpc.NatGateway argument bandwidth_packages.

    snatTableId String

    The value can get from alicloud.vpc.NatGateway Attributes "snat_table_ids".

    sourceCidr String

    The private network segment of Ecs. This parameter and the source_vswitch_id parameter are mutually exclusive and cannot appear at the same time.

    sourceVswitchId String

    The vswitch ID.

    status String

    (Available since v1.119.1) The status of snat entry.

    Import

    Snat Entry can be imported using the id, e.g.

     $ pulumi import alicloud:vpc/snatEntry:SnatEntry foo stb-1aece3:snat-232ce2
    

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the alicloud Terraform Provider.

    alicloud logo
    Alibaba Cloud v3.44.0 published on Thursday, Sep 28, 2023 by Pulumi