1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. ecs
  5. SecurityGroup
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.ecs.SecurityGroup

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a ECS Security Group resource.

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

    NOTE: Available since v1.0.0.

    NOTE: alicloud.ecs.SecurityGroup is used to build and manage a security group, and alicloud.ecs.SecurityGroupRule can define ingress or egress rules for it.

    NOTE: From version 1.7.2, alicloud.ecs.SecurityGroup has supported to segregate different ECS instance in which the same security group.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const _default = new alicloud.ecs.SecurityGroup("default", {securityGroupName: "terraform-example"});
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    default = alicloud.ecs.SecurityGroup("default", security_group_name="terraform-example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
    			SecurityGroupName: pulumi.String("terraform-example"),
    		})
    		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 @default = new AliCloud.Ecs.SecurityGroup("default", new()
        {
            SecurityGroupName = "terraform-example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.ecs.SecurityGroup;
    import com.pulumi.alicloud.ecs.SecurityGroupArgs;
    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) {
            var default_ = new SecurityGroup("default", SecurityGroupArgs.builder()
                .securityGroupName("terraform-example")
                .build());
    
        }
    }
    
    resources:
      default:
        type: alicloud:ecs:SecurityGroup
        properties:
          securityGroupName: terraform-example
    

    Basic Usage for VPC

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const _default = new alicloud.vpc.Network("default", {
        vpcName: "terraform-example",
        cidrBlock: "172.16.0.0/16",
    });
    const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {
        securityGroupName: "terraform-example",
        vpcId: _default.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    default = alicloud.vpc.Network("default",
        vpc_name="terraform-example",
        cidr_block="172.16.0.0/16")
    default_security_group = alicloud.ecs.SecurityGroup("default",
        security_group_name="terraform-example",
        vpc_id=default.id)
    
    package main
    
    import (
    	"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"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_default, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
    			VpcName:   pulumi.String("terraform-example"),
    			CidrBlock: pulumi.String("172.16.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
    			SecurityGroupName: pulumi.String("terraform-example"),
    			VpcId:             _default.ID(),
    		})
    		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 @default = new AliCloud.Vpc.Network("default", new()
        {
            VpcName = "terraform-example",
            CidrBlock = "172.16.0.0/16",
        });
    
        var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
        {
            SecurityGroupName = "terraform-example",
            VpcId = @default.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.ecs.SecurityGroup;
    import com.pulumi.alicloud.ecs.SecurityGroupArgs;
    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) {
            var default_ = new Network("default", NetworkArgs.builder()
                .vpcName("terraform-example")
                .cidrBlock("172.16.0.0/16")
                .build());
    
            var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
                .securityGroupName("terraform-example")
                .vpcId(default_.id())
                .build());
    
        }
    }
    
    resources:
      default:
        type: alicloud:vpc:Network
        properties:
          vpcName: terraform-example
          cidrBlock: 172.16.0.0/16
      defaultSecurityGroup:
        type: alicloud:ecs:SecurityGroup
        name: default
        properties:
          securityGroupName: terraform-example
          vpcId: ${default.id}
    

    Module Support

    You can use the existing security-group module to create a security group and add several rules one-click.

    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,
                      inner_access: Optional[bool] = None,
                      inner_access_policy: Optional[str] = None,
                      name: Optional[str] = None,
                      resource_group_id: Optional[str] = None,
                      security_group_name: Optional[str] = None,
                      security_group_type: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None,
                      vpc_id: 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:ecs:SecurityGroup
    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 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 securityGroupResource = new AliCloud.Ecs.SecurityGroup("securityGroupResource", new()
    {
        Description = "string",
        InnerAccessPolicy = "string",
        ResourceGroupId = "string",
        SecurityGroupName = "string",
        SecurityGroupType = "string",
        Tags = 
        {
            { "string", "string" },
        },
        VpcId = "string",
    });
    
    example, err := ecs.NewSecurityGroup(ctx, "securityGroupResource", &ecs.SecurityGroupArgs{
    	Description:       pulumi.String("string"),
    	InnerAccessPolicy: pulumi.String("string"),
    	ResourceGroupId:   pulumi.String("string"),
    	SecurityGroupName: pulumi.String("string"),
    	SecurityGroupType: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	VpcId: pulumi.String("string"),
    })
    
    var securityGroupResource = new SecurityGroup("securityGroupResource", SecurityGroupArgs.builder()
        .description("string")
        .innerAccessPolicy("string")
        .resourceGroupId("string")
        .securityGroupName("string")
        .securityGroupType("string")
        .tags(Map.of("string", "string"))
        .vpcId("string")
        .build());
    
    security_group_resource = alicloud.ecs.SecurityGroup("securityGroupResource",
        description="string",
        inner_access_policy="string",
        resource_group_id="string",
        security_group_name="string",
        security_group_type="string",
        tags={
            "string": "string",
        },
        vpc_id="string")
    
    const securityGroupResource = new alicloud.ecs.SecurityGroup("securityGroupResource", {
        description: "string",
        innerAccessPolicy: "string",
        resourceGroupId: "string",
        securityGroupName: "string",
        securityGroupType: "string",
        tags: {
            string: "string",
        },
        vpcId: "string",
    });
    
    type: alicloud:ecs:SecurityGroup
    properties:
        description: string
        innerAccessPolicy: string
        resourceGroupId: string
        securityGroupName: string
        securityGroupType: string
        tags:
            string: string
        vpcId: 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
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    InnerAccess bool
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    InnerAccessPolicy string
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    Name string
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    ResourceGroupId string
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    SecurityGroupName string
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    SecurityGroupType string
    The type of the security group. Default value: normal. Valid values:
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    VpcId string
    The ID of the VPC in which you want to create the security group.
    Description string
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    InnerAccess bool
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    InnerAccessPolicy string
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    Name string
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    ResourceGroupId string
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    SecurityGroupName string
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    SecurityGroupType string
    The type of the security group. Default value: normal. Valid values:
    Tags map[string]string
    A mapping of tags to assign to the resource.
    VpcId string
    The ID of the VPC in which you want to create the security group.
    description String
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    innerAccess Boolean
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    innerAccessPolicy String
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name String
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resourceGroupId String
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    securityGroupName String
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    securityGroupType String
    The type of the security group. Default value: normal. Valid values:
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    vpcId String
    The ID of the VPC in which you want to create the security group.
    description string
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    innerAccess boolean
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    innerAccessPolicy string
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name string
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resourceGroupId string
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    securityGroupName string
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    securityGroupType string
    The type of the security group. Default value: normal. Valid values:
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    vpcId string
    The ID of the VPC in which you want to create the security group.
    description str
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    inner_access bool
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    inner_access_policy str
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name str
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resource_group_id str
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    security_group_name str
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    security_group_type str
    The type of the security group. Default value: normal. Valid values:
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    vpc_id str
    The ID of the VPC in which you want to create the security group.
    description String
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    innerAccess Boolean
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    innerAccessPolicy String
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name String
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resourceGroupId String
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    securityGroupName String
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    securityGroupType String
    The type of the security group. Default value: normal. Valid values:
    tags Map<String>
    A mapping of tags to assign to the resource.
    vpcId String
    The ID of the VPC in which you want to create the security group.

    Outputs

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

    CreateTime string
    (Available since v1.239.0) The time when the security group was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    CreateTime string
    (Available since v1.239.0) The time when the security group was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    createTime String
    (Available since v1.239.0) The time when the security group was created.
    id String
    The provider-assigned unique ID for this managed resource.
    createTime string
    (Available since v1.239.0) The time when the security group was created.
    id string
    The provider-assigned unique ID for this managed resource.
    create_time str
    (Available since v1.239.0) The time when the security group was created.
    id str
    The provider-assigned unique ID for this managed resource.
    createTime String
    (Available since v1.239.0) The time when the security group was created.
    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,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            inner_access: Optional[bool] = None,
            inner_access_policy: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            security_group_name: Optional[str] = None,
            security_group_type: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            vpc_id: 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:ecs:SecurityGroup    get:      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:
    CreateTime string
    (Available since v1.239.0) The time when the security group was created.
    Description string
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    InnerAccess bool
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    InnerAccessPolicy string
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    Name string
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    ResourceGroupId string
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    SecurityGroupName string
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    SecurityGroupType string
    The type of the security group. Default value: normal. Valid values:
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    VpcId string
    The ID of the VPC in which you want to create the security group.
    CreateTime string
    (Available since v1.239.0) The time when the security group was created.
    Description string
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    InnerAccess bool
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    InnerAccessPolicy string
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    Name string
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    ResourceGroupId string
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    SecurityGroupName string
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    SecurityGroupType string
    The type of the security group. Default value: normal. Valid values:
    Tags map[string]string
    A mapping of tags to assign to the resource.
    VpcId string
    The ID of the VPC in which you want to create the security group.
    createTime String
    (Available since v1.239.0) The time when the security group was created.
    description String
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    innerAccess Boolean
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    innerAccessPolicy String
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name String
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resourceGroupId String
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    securityGroupName String
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    securityGroupType String
    The type of the security group. Default value: normal. Valid values:
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    vpcId String
    The ID of the VPC in which you want to create the security group.
    createTime string
    (Available since v1.239.0) The time when the security group was created.
    description string
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    innerAccess boolean
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    innerAccessPolicy string
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name string
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resourceGroupId string
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    securityGroupName string
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    securityGroupType string
    The type of the security group. Default value: normal. Valid values:
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    vpcId string
    The ID of the VPC in which you want to create the security group.
    create_time str
    (Available since v1.239.0) The time when the security group was created.
    description str
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    inner_access bool
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    inner_access_policy str
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name str
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resource_group_id str
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    security_group_name str
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    security_group_type str
    The type of the security group. Default value: normal. Valid values:
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    vpc_id str
    The ID of the VPC in which you want to create the security group.
    createTime String
    (Available since v1.239.0) The time when the security group was created.
    description String
    The description of the security group. The description must be 2 to 256 characters in length. It cannot start with http:// or https://.
    innerAccess Boolean
    Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    Deprecated: Field inner_access has been deprecated from provider version 1.55.3. New field inner_access_policy instead.

    innerAccessPolicy String
    The internal access control policy of the security group. Valid values:

    • Accept: The internal interconnectivity policy.
    • Drop: The internal isolation policy.
    name String
    Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    Deprecated: Field name has been deprecated from provider version 1.239.0. New field security_group_name instead.

    resourceGroupId String
    The ID of the resource group to which the security group belongs. NOTE: From version 1.115.0, resource_group_id can be modified.
    securityGroupName String
    The name of the security group. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
    securityGroupType String
    The type of the security group. Default value: normal. Valid values:
    tags Map<String>
    A mapping of tags to assign to the resource.
    vpcId String
    The ID of the VPC in which you want to create the security group.

    Import

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

    $ pulumi import alicloud:ecs/securityGroup:SecurityGroup example <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
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi