1. Registry
  2. Packages
  3. Alibaba Cloud Provider
  4. API Docs
  5. ens
  6. SecurityGroup
Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi
alicloud logo alicloud logo
Viewing docs for Alibaba Cloud v3.106.0
published on Monday, Aug 24, 2026 by Pulumi

    Provides a ENS Security Group resource.

    For information about ENS Security Group and how to use it, see What is Security Group.

    NOTE: Available since v1.213.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const _default = new alicloud.ens.SecurityGroup("default", {
        description: name,
        securityGroupName: name,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.ens.SecurityGroup("default",
        description=name,
        security_group_name=name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ens"
    	"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 := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_, err := ens.NewSecurityGroup(ctx, "default", &ens.SecurityGroupArgs{
    			Description:       pulumi.String(name),
    			SecurityGroupName: pulumi.String(name),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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") ?? "terraform-example";
        var @default = new AliCloud.Ens.SecurityGroup("default", new()
        {
            Description = name,
            SecurityGroupName = name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.ens.SecurityGroup;
    import com.pulumi.alicloud.ens.SecurityGroupArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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("terraform-example");
            var default_ = new SecurityGroup("default", SecurityGroupArgs.builder()
                .description(name)
                .securityGroupName(name)
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      default:
        type: alicloud:ens:SecurityGroup
        properties:
          description: ${name}
          securityGroupName: ${name}
    
    pulumi {
      required_providers {
        alicloud = {
          source = "pulumi/alicloud"
        }
      }
    }
    
    resource "alicloud_ens_securitygroup" "default" {
      description         = var.name
      security_group_name = var.name
    }
    variable "name" {
      type    = string
      default = "terraform-example"
    }
    

    📚 Need more examples? VIEW MORE EXAMPLES

    Create SecurityGroup Resource

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

    Constructor syntax

    new SecurityGroup(name: string, args?: SecurityGroupArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityGroup(resource_name: str,
                      args: Optional[SecurityGroupArgs] = None,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityGroup(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      description: Optional[str] = None,
                      permissions: Optional[Sequence[SecurityGroupPermissionArgs]] = None,
                      security_group_name: Optional[str] = None)
    func NewSecurityGroup(ctx *Context, name string, args *SecurityGroupArgs, opts ...ResourceOption) (*SecurityGroup, error)
    public SecurityGroup(string name, SecurityGroupArgs? args = null, CustomResourceOptions? opts = null)
    public SecurityGroup(String name, SecurityGroupArgs args)
    public SecurityGroup(String name, SecurityGroupArgs args, CustomResourceOptions options)
    
    type: alicloud:ens:SecurityGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "alicloud_ens_security_group" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args SecurityGroupArgs
    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 SecurityGroupArgs
    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 SecurityGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityGroupArgs
    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 alicloudSecurityGroupResource = new AliCloud.Ens.SecurityGroup("alicloudSecurityGroupResource", new()
    {
        Description = "string",
        Permissions = new[]
        {
            new AliCloud.Ens.Inputs.SecurityGroupPermissionArgs
            {
                CreationTime = "string",
                Description = "string",
                DestCidrIp = "string",
                Direction = "string",
                IpProtocol = "string",
                Ipv6DestCidrIp = "string",
                Ipv6SourceCidrIp = "string",
                Policy = "string",
                PortRange = "string",
                Priority = 0,
                SourceCidrIp = "string",
                SourcePortRange = "string",
            },
        },
        SecurityGroupName = "string",
    });
    
    example, err := ens.NewSecurityGroup(ctx, "alicloudSecurityGroupResource", &ens.SecurityGroupArgs{
    	Description: pulumi.String("string"),
    	Permissions: ens.SecurityGroupPermissionArray{
    		&ens.SecurityGroupPermissionArgs{
    			CreationTime:     pulumi.String("string"),
    			Description:      pulumi.String("string"),
    			DestCidrIp:       pulumi.String("string"),
    			Direction:        pulumi.String("string"),
    			IpProtocol:       pulumi.String("string"),
    			Ipv6DestCidrIp:   pulumi.String("string"),
    			Ipv6SourceCidrIp: pulumi.String("string"),
    			Policy:           pulumi.String("string"),
    			PortRange:        pulumi.String("string"),
    			Priority:         pulumi.Int(0),
    			SourceCidrIp:     pulumi.String("string"),
    			SourcePortRange:  pulumi.String("string"),
    		},
    	},
    	SecurityGroupName: pulumi.String("string"),
    })
    
    resource "alicloud_ens_security_group" "alicloudSecurityGroupResource" {
      lifecycle {
        create_before_destroy = true
      }
      description = "string"
      permissions {
        creation_time       = "string"
        description         = "string"
        dest_cidr_ip        = "string"
        direction           = "string"
        ip_protocol         = "string"
        ipv6_dest_cidr_ip   = "string"
        ipv6_source_cidr_ip = "string"
        policy              = "string"
        port_range          = "string"
        priority            = 0
        source_cidr_ip      = "string"
        source_port_range   = "string"
      }
      security_group_name = "string"
    }
    
    var alicloudSecurityGroupResource = new com.pulumi.alicloud.ens.SecurityGroup("alicloudSecurityGroupResource", com.pulumi.alicloud.ens.SecurityGroupArgs.builder()
        .description("string")
        .permissions(SecurityGroupPermissionArgs.builder()
            .creationTime("string")
            .description("string")
            .destCidrIp("string")
            .direction("string")
            .ipProtocol("string")
            .ipv6DestCidrIp("string")
            .ipv6SourceCidrIp("string")
            .policy("string")
            .portRange("string")
            .priority(0)
            .sourceCidrIp("string")
            .sourcePortRange("string")
            .build())
        .securityGroupName("string")
        .build());
    
    alicloud_security_group_resource = alicloud.ens.SecurityGroup("alicloudSecurityGroupResource",
        description="string",
        permissions=[{
            "creation_time": "string",
            "description": "string",
            "dest_cidr_ip": "string",
            "direction": "string",
            "ip_protocol": "string",
            "ipv6_dest_cidr_ip": "string",
            "ipv6_source_cidr_ip": "string",
            "policy": "string",
            "port_range": "string",
            "priority": 0,
            "source_cidr_ip": "string",
            "source_port_range": "string",
        }],
        security_group_name="string")
    
    const alicloudSecurityGroupResource = new alicloud.ens.SecurityGroup("alicloudSecurityGroupResource", {
        description: "string",
        permissions: [{
            creationTime: "string",
            description: "string",
            destCidrIp: "string",
            direction: "string",
            ipProtocol: "string",
            ipv6DestCidrIp: "string",
            ipv6SourceCidrIp: "string",
            policy: "string",
            portRange: "string",
            priority: 0,
            sourceCidrIp: "string",
            sourcePortRange: "string",
        }],
        securityGroupName: "string",
    });
    
    type: alicloud:ens:SecurityGroup
    properties:
        description: string
        permissions:
            - creationTime: string
              description: string
              destCidrIp: string
              direction: string
              ipProtocol: string
              ipv6DestCidrIp: string
              ipv6SourceCidrIp: string
              policy: string
              portRange: string
              priority: 0
              sourceCidrIp: string
              sourcePortRange: string
        securityGroupName: string
    

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

    Description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    Permissions List<Pulumi.AliCloud.Ens.Inputs.SecurityGroupPermission>
    A collection of rules for a security group instance See permissions below.
    SecurityGroupName string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    Description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    Permissions []SecurityGroupPermissionArgs
    A collection of rules for a security group instance See permissions below.
    SecurityGroupName string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions list(object)
    A collection of rules for a security group instance See permissions below.
    security_group_name string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description String
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions List<SecurityGroupPermission>
    A collection of rules for a security group instance See permissions below.
    securityGroupName String
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions SecurityGroupPermission[]
    A collection of rules for a security group instance See permissions below.
    securityGroupName string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description str
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions Sequence[SecurityGroupPermissionArgs]
    A collection of rules for a security group instance See permissions below.
    security_group_name str
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description String
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions List<Property Map>
    A collection of rules for a security group instance See permissions below.
    securityGroupName String
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SecurityGroup Resource

    Get an existing SecurityGroup 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?: SecurityGroupState, opts?: CustomResourceOptions): SecurityGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            permissions: Optional[Sequence[SecurityGroupPermissionArgs]] = None,
            security_group_name: Optional[str] = None) -> SecurityGroup
    func GetSecurityGroup(ctx *Context, name string, id IDInput, state *SecurityGroupState, opts ...ResourceOption) (*SecurityGroup, error)
    public static SecurityGroup Get(string name, Input<string> id, SecurityGroupState? state, CustomResourceOptions? opts = null)
    public static SecurityGroup get(String name, Output<String> id, SecurityGroupState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:ens:SecurityGroup    get:      id: ${id}
    import {
      to = alicloud_ens_security_group.example
      id = "${id}"
    }
    
    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:
    Description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    Permissions List<Pulumi.AliCloud.Ens.Inputs.SecurityGroupPermission>
    A collection of rules for a security group instance See permissions below.
    SecurityGroupName string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    Description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    Permissions []SecurityGroupPermissionArgs
    A collection of rules for a security group instance See permissions below.
    SecurityGroupName string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions list(object)
    A collection of rules for a security group instance See permissions below.
    security_group_name string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description String
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions List<SecurityGroupPermission>
    A collection of rules for a security group instance See permissions below.
    securityGroupName String
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description string
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions SecurityGroupPermission[]
    A collection of rules for a security group instance See permissions below.
    securityGroupName string
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description str
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions Sequence[SecurityGroupPermissionArgs]
    A collection of rules for a security group instance See permissions below.
    security_group_name str
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)
    description String
    Security group description information It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https://
    permissions List<Property Map>
    A collection of rules for a security group instance See permissions below.
    securityGroupName String
    Security group name The security group name. The length is 2~128 English or Chinese characters. It must start with an uppercase or lowcase letter or a Chinese character and cannot start with http:// or https. Can contain digits, colons (:), underscores (_), or hyphens (-)

    Supporting Types

    SecurityGroupPermission, SecurityGroupPermissionArgs

    CreationTime string
    Creation time, UTC time.
    Description string
    Rule description information
    DestCidrIp string
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    Direction string
    Authorized direction Example value: ingress
    IpProtocol string
    IP protocol Example value: TCP
    Ipv6DestCidrIp string
    The target IPv6 address segment.
    Ipv6SourceCidrIp string
    The source IPv6 address segment.
    Policy string
    Authorization Policy Example value: Accept
    PortRange string
    Source end port range.
    Priority int
    Rule Priority Example value: 1
    SourceCidrIp string
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    SourcePortRange string
    The port range of the source security group.
    CreationTime string
    Creation time, UTC time.
    Description string
    Rule description information
    DestCidrIp string
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    Direction string
    Authorized direction Example value: ingress
    IpProtocol string
    IP protocol Example value: TCP
    Ipv6DestCidrIp string
    The target IPv6 address segment.
    Ipv6SourceCidrIp string
    The source IPv6 address segment.
    Policy string
    Authorization Policy Example value: Accept
    PortRange string
    Source end port range.
    Priority int
    Rule Priority Example value: 1
    SourceCidrIp string
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    SourcePortRange string
    The port range of the source security group.
    creation_time string
    Creation time, UTC time.
    description string
    Rule description information
    dest_cidr_ip string
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    direction string
    Authorized direction Example value: ingress
    ip_protocol string
    IP protocol Example value: TCP
    ipv6_dest_cidr_ip string
    The target IPv6 address segment.
    ipv6_source_cidr_ip string
    The source IPv6 address segment.
    policy string
    Authorization Policy Example value: Accept
    port_range string
    Source end port range.
    priority number
    Rule Priority Example value: 1
    source_cidr_ip string
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    source_port_range string
    The port range of the source security group.
    creationTime String
    Creation time, UTC time.
    description String
    Rule description information
    destCidrIp String
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    direction String
    Authorized direction Example value: ingress
    ipProtocol String
    IP protocol Example value: TCP
    ipv6DestCidrIp String
    The target IPv6 address segment.
    ipv6SourceCidrIp String
    The source IPv6 address segment.
    policy String
    Authorization Policy Example value: Accept
    portRange String
    Source end port range.
    priority Integer
    Rule Priority Example value: 1
    sourceCidrIp String
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    sourcePortRange String
    The port range of the source security group.
    creationTime string
    Creation time, UTC time.
    description string
    Rule description information
    destCidrIp string
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    direction string
    Authorized direction Example value: ingress
    ipProtocol string
    IP protocol Example value: TCP
    ipv6DestCidrIp string
    The target IPv6 address segment.
    ipv6SourceCidrIp string
    The source IPv6 address segment.
    policy string
    Authorization Policy Example value: Accept
    portRange string
    Source end port range.
    priority number
    Rule Priority Example value: 1
    sourceCidrIp string
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    sourcePortRange string
    The port range of the source security group.
    creation_time str
    Creation time, UTC time.
    description str
    Rule description information
    dest_cidr_ip str
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    direction str
    Authorized direction Example value: ingress
    ip_protocol str
    IP protocol Example value: TCP
    ipv6_dest_cidr_ip str
    The target IPv6 address segment.
    ipv6_source_cidr_ip str
    The source IPv6 address segment.
    policy str
    Authorization Policy Example value: Accept
    port_range str
    Source end port range.
    priority int
    Rule Priority Example value: 1
    source_cidr_ip str
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    source_port_range str
    The port range of the source security group.
    creationTime String
    Creation time, UTC time.
    description String
    Rule description information
    destCidrIp String
    Destination IP address segment for outbound authorization Example value: 0.0.0.0/0
    direction String
    Authorized direction Example value: ingress
    ipProtocol String
    IP protocol Example value: TCP
    ipv6DestCidrIp String
    The target IPv6 address segment.
    ipv6SourceCidrIp String
    The source IPv6 address segment.
    policy String
    Authorization Policy Example value: Accept
    portRange String
    Source end port range.
    priority Number
    Rule Priority Example value: 1
    sourceCidrIp String
    Source IP address segment, used for inbound authorization Example value: 0.0.0.0/0
    sourcePortRange String
    The port range of the source security group.

    Import

    ENS Security Group can be imported using the id, e.g.

    $ pulumi import alicloud:ens/securityGroup:SecurityGroup example <security_group_id>
    

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

    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 alicloud logo
    Viewing docs for Alibaba Cloud v3.106.0
    published on Monday, Aug 24, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial