alicloud.ecs.SecurityGroup
Explore with Pulumi AI
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, andalicloud.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
to256
characters in length. It cannot start withhttp://
orhttps://
. - Inner
Access bool - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - Inner
Access stringPolicy - 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 fieldsecurity_group_name
instead. - Resource
Group stringId - 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 stringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 stringType - The type of the security group. Default value:
normal
. Valid values: - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Vpc
Id 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - Inner
Access bool - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - Inner
Access stringPolicy - 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 fieldsecurity_group_name
instead. - Resource
Group stringId - 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 stringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 stringType - The type of the security group. Default value:
normal
. Valid values: - map[string]string
- A mapping of tags to assign to the resource.
- Vpc
Id 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner
Access Boolean - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner
Access StringPolicy - 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 fieldsecurity_group_name
instead. - resource
Group StringId - 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 StringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 StringType - The type of the security group. Default value:
normal
. Valid values: - Map<String,String>
- A mapping of tags to assign to the resource.
- vpc
Id 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner
Access boolean - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner
Access stringPolicy - 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 fieldsecurity_group_name
instead. - resource
Group stringId - 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 stringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 stringType - The type of the security group. Default value:
normal
. Valid values: - {[key: string]: string}
- A mapping of tags to assign to the resource.
- vpc
Id 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner_
access bool - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner_
access_ strpolicy - 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 fieldsecurity_group_name
instead. - resource_
group_ strid - 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_ strname - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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_ strtype - The type of the security group. Default value:
normal
. Valid values: - 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner
Access Boolean - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner
Access StringPolicy - 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 fieldsecurity_group_name
instead. - resource
Group StringId - 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 StringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 StringType - The type of the security group. Default value:
normal
. Valid values: - Map<String>
- A mapping of tags to assign to the resource.
- vpc
Id 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:
- Create
Time 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 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 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 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.
- create
Time 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.
- Create
Time 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - Inner
Access bool - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - Inner
Access stringPolicy - 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 fieldsecurity_group_name
instead. - Resource
Group stringId - 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 stringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 stringType - The type of the security group. Default value:
normal
. Valid values: - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Vpc
Id string - The ID of the VPC in which you want to create the security group.
- Create
Time 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - Inner
Access bool - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - Inner
Access stringPolicy - 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 fieldsecurity_group_name
instead. - Resource
Group stringId - 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 stringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 stringType - The type of the security group. Default value:
normal
. Valid values: - map[string]string
- A mapping of tags to assign to the resource.
- Vpc
Id string - The ID of the VPC in which you want to create the security group.
- create
Time 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner
Access Boolean - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner
Access StringPolicy - 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 fieldsecurity_group_name
instead. - resource
Group StringId - 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 StringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 StringType - The type of the security group. Default value:
normal
. Valid values: - Map<String,String>
- A mapping of tags to assign to the resource.
- vpc
Id String - The ID of the VPC in which you want to create the security group.
- create
Time 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner
Access boolean - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner
Access stringPolicy - 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 fieldsecurity_group_name
instead. - resource
Group stringId - 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 stringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 stringType - The type of the security group. Default value:
normal
. Valid values: - {[key: string]: string}
- A mapping of tags to assign to the resource.
- vpc
Id 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner_
access bool - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner_
access_ strpolicy - 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 fieldsecurity_group_name
instead. - resource_
group_ strid - 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_ strname - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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_ strtype - The type of the security group. Default value:
normal
. Valid values: - 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.
- create
Time 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
to256
characters in length. It cannot start withhttp://
orhttps://
. - inner
Access Boolean - Field
inner_access
has been deprecated from provider version 1.55.3. New fieldinner_access_policy
instead. - inner
Access StringPolicy - 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 fieldsecurity_group_name
instead. - resource
Group StringId - 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 StringName - The name of the security group. The name must be
2
to128
characters in length. The name must start with a letter and cannot start withhttp://
orhttps://
. 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 StringType - The type of the security group. Default value:
normal
. Valid values: - Map<String>
- A mapping of tags to assign to the resource.
- vpc
Id 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.