Creates outbound rules in a security group. You can use the created rules to allow or deny outbound traffic from Elastic Compute Service (ECS) instances in the security group to other objects for fine-grained network access control.
Operation description
Limits
- Quantity limit: The total number of outbound security group rules in each security group cannot exceed 200. For more information, see the Security group limits section of the "Limits" topic.
- Rule types: For outbound security group rules, you can set Policy to accept or drop to specify whether to allow or deny access.
- Rule priorities: For outbound security group rules, the valid values of Priority range from 1 to 100. A smaller value indicates a higher priority. When multiple security group rules have the same priority, drop rules take precedence.
Considerations
- If the security group rule that you call the AuthorizeSecurityGroupEgress operation to create exists in the security group, the call is successful but no security group rule is created.
- Parameters and their
Permissions.N
-prefixed counterparts cannot be specified in the same request. We recommend that you use thePermissions.N
-prefixed parameters.
Parameters that define a security group rule
Define a security group rule by configuring the following parameters together:
- One of the following parameters: DestCidrIp, Ipv6DestCidrIp, DestPrefixListId, and DestGroupId. DestCidrIp specifies the destination IPv4 CIDR block. Ipv6DestCidrIp specifies the destination IPv6 CIDR block. DestPrefixListId specifies the ID of the destination prefix list. DestGroupId specifies the destination security group.
- PortRange: specifies the range of destination port numbers.
- IpProtocol: specifies the protocol.
- Policy: specifies the action.
Sample requests
Sample requests to create outbound security group rules that control access to different destinations in a security group in the China (Hangzhou) region:
-
Sample request to create an outbound security group rule that controls access to a specific CIDR block:
"RegionId":"cn-hangzhou", //The region ID of the source security group. "SecurityGroupId":"sg-bp17vs63txqxbds9***", //The ID of the source security group. "Permissions":[ { "DestCidrIp": "10.0.0.0/8", //The destination IPv4 CIDR block. "PortRange": "-1/-1", //The range of destination port numbers. "IpProtocol": "ICMP", //The protocol. "Policy": "Accept" //The action. } ]
-
Sample request to create an outbound security group rule that controls access to a security group and an outbound security group rule that controls access to a prefix list:
"RegionId":"cn-hangzhou", "SecurityGroupId":"sg-bp17vs63txqxbds9***", "Permissions":[ { "DestGroupId": "sg-bp67acfmxazb4pi***", //The ID of the destination security group. "PortRange": "22/22", "IpProtocol": "TCP", "Policy": "Drop" },{ "DestPrefixListId": "pl-x1j1k5ykzqlixdcy****", //The ID of the destination prefix list. "PortRange": "22/22", "IpProtocol": "TCP", "Policy": "Drop" } ]
Debugging
Authorization information
The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action
policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:
- Operation: the value that you can use in the Action element to specify the operation on a resource.
- Access level: the access level of each operation. The levels are read, write, and list.
- Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
- The required resource types are displayed in bold characters.
- If the permissions cannot be granted at the resource level,
All Resources
is used in the Resource type column of the operation.
- Condition Key: the condition key that is defined by the cloud service.
- Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
ecs:AuthorizeSecurityGroupEgress | create | *SecurityGroup acs:ecs:{#regionId}:{#accountId}:securitygroup/{#securitygroupId} |
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
RegionId | string | Yes | The region ID of the source security group. You can call the DescribeRegions operation to query the most recent region list. | cn-hangzhou |
ClientToken | string | No | The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see Ensure idempotence. | 123e4567-e89b-12d3-a456-426655440000 |
SecurityGroupId | string | Yes | The security group ID. | sg-bp67acfmxazb4p**** |
Permissions | array<object> | No | The security group rules. Valid values of N: 1 to 100. | |
object | No | Security group rule N. | ||
Policy | string | No | The action of the security group rule. Valid values:
Default value: accept. | accept |
Priority | string | No | The priority of the security group rule. A smaller value specifies a higher priority. Valid values: 1 to 100. Default value: 1. | 1 |
IpProtocol | string | No | The protocol. The values of this parameter are case-insensitive. Valid values:
| ALL |
DestCidrIp | string | No | The destination IPv4 CIDR block of the security group rule. IPv4 CIDR blocks and IPv4 addresses are supported. | 10.0.0.0/8 |
Ipv6DestCidrIp | string | No | The destination IPv6 CIDR block of the security group rule. IPv6 CIDR blocks and IPv6 addresses are supported. Note
This parameter is valid only for ECS instances that reside in virtual private clouds (VPCs) and support IPv6 CIDR blocks. You cannot specify this parameter and DestCidrIp in the same request.
| 2001:db8:1233:1a00::*** |
DestGroupId | string | No | The ID of the destination security group.
When you specify this parameter, take note of the following items:
| sg-bp67acfmxazb4p**** |
DestPrefixListId | string | No | The ID of the destination prefix list. You can call the DescribePrefixLists operation to query the IDs of available prefix lists. When you specify this parameter, take note of the following items:
| pl-x1j1k5ykzqlixdcy**** |
PortRange | string | No | The range of destination port numbers for the protocols specified in the security group rule. Valid values:
| 80/80 |
SourceCidrIp | string | No | The source IPv4 CIDR block. IPv4 CIDR blocks and IPv4 addresses are supported. This parameter is used to support quintuple rules. For more information, see Security group quintuple rules. | 10.0.0.0/8 |
Ipv6SourceCidrIp | string | No | The source IPv6 CIDR block. IPv6 CIDR blocks and IPv6 addresses are supported. This parameter is used to support quintuple rules. For more information, see Security group quintuple rules. Note
This parameter is valid only for ECS instances that reside in VPCs and support IPv6 CIDR blocks. You cannot specify this parameter and DestCidrIp in the same request.
| 2001:db8:1234:1a00::*** |
SourcePortRange | string | No | The range of source port numbers for the protocols specified in the security group rule. Valid values:
This parameter is used to support quintuple rules. For more information, see Security group quintuple rules. | 80/80 |
DestGroupOwnerAccount | string | No | The Alibaba Cloud account that manages the destination security group.
| Test@aliyun.com |
DestGroupOwnerId | long | No | The ID of the Alibaba Cloud account that manages the destination security group.
| 12345678910 |
NicType | string | No | The network interface controller (NIC) type of the security group rule if the security group resides in the classic network. Valid values:
Default value: internet. | intranet |
Description | string | No | The description of the security group rule. The description must be 1 to 512 characters in length. | This is description. |
Policydeprecated | string | No | This parameter is deprecated. Use | accept |
Prioritydeprecated | string | No | This parameter is deprecated. Use | 1 |
IpProtocoldeprecated | string | No | This parameter is deprecated. Use | ALL |
DestCidrIpdeprecated | string | No | This parameter is deprecated. Use | 10.0.0.0/8 |
Ipv6DestCidrIpdeprecated | string | No | This parameter is deprecated. Use | 2001:db8:1233:1a00::*** |
DestGroupIddeprecated | string | No | This parameter is deprecated. Use | sg-bp67acfmxazb4p**** |
DestPrefixListIddeprecated | string | No | This parameter is deprecated. Use | pl-x1j1k5ykzqlixdcy**** |
PortRangedeprecated | string | No | This parameter is deprecated. Use | 80/80 |
SourceCidrIpdeprecated | string | No | This parameter is deprecated. Use | 10.0.0.0/8 |
Ipv6SourceCidrIpdeprecated | string | No | This parameter is deprecated. Use | 2001:db8:1234:1a00::*** |
SourcePortRangedeprecated | string | No | This parameter is deprecated. Use | 80/80 |
DestGroupOwnerAccountdeprecated | string | No | This parameter is deprecated. Use | Test@aliyun.com |
DestGroupOwnerIddeprecated | long | No | This parameter is deprecated. Use | 12345678910 |
NicTypedeprecated | string | No | This parameter is deprecated. Use | intranet |
Descriptiondeprecated | string | No | This parameter is deprecated. Use | This is description. |
Response parameters
Examples
Sample success responses
JSON
format
{
"RequestId": "473469C7-AA6F-4DC5-B3DB-A3DC0DE3****"
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
400 | OperationDenied | The specified IpProtocol does not exist or IpProtocol and PortRange do not match. | The specified IP protocol does not exist or does not match the specified port range. |
400 | InvalidIpProtocol.Malformed | The specified parameter PortRange is not valid. | The specified IpProtocol or PortRange parameter is invalid. |
400 | InvalidDestCidrIp.Malformed | The specified parameter DestCidrIp is not valid. | The specified DestCidrIp parameter is invalid. |
400 | InvalidPolicy.Malformed | The specified parameter Policy is not valid. | The specified Policy parameter is invalid. |
400 | InvalidNicType.ValueNotSupported | The specified NicType does not exist. | The specified NicType parameter does not exist. |
400 | InvalidNicType.Mismatch | The specified NicType conflicts with the authorization record. | The specified NIC type does not match the existing rule. |
400 | InvalidDestGroupId.Mismatch | Specified security group and destination group are not in the same VPC. | The specified source and destination security groups do not belong to the same VPC. |
400 | InvalidDestGroup.NotFound | Specified destination security group does not exist. | The specified DestGroupId parameter does not exist. |
400 | InvalidPriority.Malformed | The parameter Priority is invalid. | The specified Priority parameter is invalid. |
400 | InvalidPriority.ValueNotSupported | The specified parameter %s is invalid. | The specified Priority parameter is invalid. |
400 | InvalidDestCidrIp.Malformed | The parameter DestCidrIp is not valid. | The specified DestCidrIp parameter is invalid. |
400 | InvalidNicType.ValueNotSupported | The specified parameter %s is not valid. | The specified NicType parameter is invalid. |
400 | InvalidPolicy.Malformed | The specified parameter %s is not valid. | The specified Policy parameter is invalid. |
400 | InvalidSecurityGroupDiscription.Malformed | The specified security group rule description parameter %s is not valid. | The specified security group rule description is invalid. |
400 | InvalidSecurityGroup.InvalidNetworkType | The specified security group network type is not support this operation, please check the security group network types. For VPC security groups, ClassicLink must be enabled. | The operation is not supported while the security group is of the current network type. If the network type is VPC, ClassicLink must be enabled. |
400 | MissingParameter.Dest | One of the parameters DestCidrIp, Ipv6DestCidrIp, DestGroupId or DestPrefixListId in %s must be specified. | Specify at least one of the DestCidrIp, Ipv6DestCidrIp, DestGroupId, and DestPrefixListId parameters. |
400 | InvalidParam.PortRange | The specified parameter %s is not valid. It should be two integers less than 65535 in ?/? format. | The format of the port range is invalid. Specify the port range in the format of a slash separating two integers. |
400 | InvalidIpProtocol.ValueNotSupported | The parameter %s must be specified with case insensitive TCP, UDP, ICMP, GRE or All. | The specified Protocol parameter is invalid. You must set Protocol to a vaule that is case-insensitive, such as TCP, UDP, ICMP, GRE, and All. |
400 | InvalidSecurityGroupId.Malformed | The specified parameter SecurityGroupId is not valid. | The specified SecurityGroupId parameter is invalid. |
400 | InvalidParamter.Conflict | The specified SourceCidrIp should be different from the DestCidrIp. | The value of SourceCidrIp must be different from that of DestCidrIp. |
400 | InvalidSourcePortRange.Malformed | The specified parameter SourcePortRange is not valid. | The specified SourcePortRange parameter is invalid. |
400 | InvalidPortRange.Malformed | The specified parameter PortRange must set. | The PortRange parameter must be specified. |
400 | InvalidParam.SourceIp | The Parameters SourceCidrIp and Ipv6SourceCidrIp in %s cannot be set at the same time. | The SourceCidrIp and Ipv6SourceCidrIp parameters cannot be specified at the same time. |
400 | InvalidParam.DestIp | The Parameters DestCidrIp and Ipv6DestCidrIp in %s cannot be set at the same time. | The DestCidrIp and Ipv6DestCidrIp parameters cannot be specified at the same time. |
400 | InvalidParam.Ipv6DestCidrIp | The specified parameter %s is not valid. | The specified Ipv6DestCidrIp parameter is invalid. |
400 | InvalidParam.Ipv6SourceCidrIp | The specified parameter %s is not valid. | The specified Ipv6SourceCidrIp parameter is invalid. |
400 | InvalidParam.Ipv4ProtocolConflictWithIpv6Address | IPv6 address cannot be specified for IPv4-specific protocol. | IPv6 addresses cannot be specified for instances that use the IPv4 protocol. |
400 | InvalidParam.Ipv6ProtocolConflictWithIpv4Address | IPv4 address cannot be specified for IPv6-specific protocol. | IPv4 addresses cannot be specified for instances that use the IPv6 protocol. |
400 | InvalidParameter.Ipv6CidrIp | The specified Ipv6CidrIp is not valid. | The specified Ipv6CidrIp parameter is invalid. |
400 | InvalidGroupAuthParameter.OperationDenied | The security group can not authorize to enterprise level security group. | Security groups cannot be referenced as authorization objects (destinations or sources) in rules of advanced security groups. |
400 | InvalidParameter.Conflict | IPv6 and IPv4 addresses cannot exist at the same time. | IPv6 and IPv4 addresses cannot be both specified. |
400 | InvalidParam.PrefixListAddressFamilyMismatch | The address family of the specified prefix list does not match the specified CidrIp. | The address family of the specified prefix list does not match that of the specified CIDR block. |
400 | NotSupported.ClassicNetworkPrefixList | The prefix list is not supported when the network type of security group is classic. | Security groups in the classic network do not support prefix lists. |
400 | AuthorizedGroupRule.LimitExceed | You have reached the limit on the number of group authorization rules that you can add to a security group.When authorization object of rule is security group, the limit is 20. | Up to 20 rules in which security groups are specified as authorization objects can be present in a basic security group. |
400 | InvalidParam.DestCidrIp | The specified parameter %s is not valid. | The specified DestCidrIp parameter is invalid. |
400 | InvalidParam.DestCidrIp | The specified parameter DestCidrIp is invalid. | The specified DestCidrIp parameter is invalid. |
400 | InvalidParam.SourceCidrIp | The specified param SourceCidrIp is not valid. | The specified SourceCidrIp parameter is invalid. |
400 | InvalidParam.SourceCidrIp | The specified parameter %s is not valid. | The specified SourceCidrIp parameter is invalid. |
400 | InvalidParam.Permissions | The specified parameter Permissions cannot coexist with other parameters. | The specified Permissions parameter and other parameters are mutually exclusive. |
400 | InvalidParam.DuplicatePermissions | There are duplicate permissions in the specified parameter Permissions. | The specified Permissions parameter contains duplicate permissions. |
400 | InvalidGroupParameter.OperationDenied | The attributes Policy, SourceGroupId, DestGroupId of enterprise level security groups are not allowed to be set or modified. | The attributes Policy, SourceGroupId, DestGroupId of enterprise level security groups are not allowed to be set or modified. |
403 | InvalidDestGroupId.Mismatch | NicType is required or NicType expects intranet. | The NicType parameter is not specified or is not set to intranet. |
403 | MissingParameter | The input parameter DestGroupId or DestCidrIp cannot be both blank. | The DestGroupId and DestCidrIp parameters are required. |
403 | AuthorizationLimitExceed | The limit of authorization records in the security group reaches. | The security group has reached the maximum number of rules that can be added to it. |
403 | InvalidParamter.Conflict | The specified SecurityGroupId should be different from the SourceGroupId. | The destination security group is the same as the source security group. |
403 | InvalidNetworkType.Conflict | The specified SecurityGroup network type should be same with SourceGroup network type (vpc or classic). | The network type of the destination security group is different from that of the source security group. |
403 | InvalidSecurityGroup.IsSame | The authorized SecurityGroupId should be different from the DestGroupId. | The ID of the source security group is the same as that of the destination security group. |
403 | InvalidNetworkType.Conflict | The parameter SecurityGroup network type should be same with SourceGroup network type (vpc or classic). | The network type of the specified security group is different from that of the source security group. |
403 | InvalidOperation.ResourceManagedByCloudProduct | %s | You cannot modify security groups managed by cloud services. |
403 | LimitExceed.PrefixListAssociationResource | The number of resources associated with the prefix list exceeds the limit. | The maximum number of resources that can be associated with the prefix list has been exceeded. |
404 | InvalidSecurityGroupId.NotFound | The specified SecurityGroupId does not exist. | The specified security group does not exist in this account. Check whether the security group ID is correct. |
404 | InvalidDestGroupId.NotFound | The DestGroupId provided does not exist in our records. | - |
404 | InvalidPrefixListId.NotFound | The specified prefix list was not found. | The prefix list does not exist. |
404 | InvalidSecurityGroupId.NotFound | %s | The specified security group ID does not exist. |
500 | InternalError | The request processing has failed due to some unknown error. | An internal error has occurred. Try again later. |
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2023-11-21 | The Error code has changed | View Change Details |
2023-04-07 | The Error code has changed | View Change Details |
2022-09-05 | The Error code has changed | View Change Details |
2022-07-13 | API Description Update. The Error code has changed. The request parameters of the API has changed | View Change Details |
2022-03-30 | The Error code has changed | View Change Details |