ALIYUN::VPC::SnatEntry類型用于在SNAT列表中添加SNAT條目。
語法
{
"Type": "ALIYUN::VPC::SnatEntry",
"Properties": {
"SnatTableId": String,
"SnatEntryName": String,
"SourceVSwitchIds": List,
"SourceCIDR": String,
"SnatIp": String,
"EipAffinity": Integer
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
SnatTableId | String | 是 | 否 | SNAT表ID。 | 無 |
SnatEntryName | String | 否 | 是 | SNAT規則的名稱。 | 長度為2~128個字符,必須以英文字母或漢字開頭,但不能以 |
SourceVSwitchIds | List | 否 | 否 | 需要公網訪問的交換機的ID。 | 無 |
SourceCIDR | String | 否 | 否 | 交換機或ECS實例的網段。 | 不能同時指定SourceCIDR和SourceVSwitchIds。 |
SnatIp | String | 是 | 是 | 公網IP地址。 | 多個IP之間用半角逗號(,)間隔。 |
EipAffinity | Integer | 否 | 否 | 是否打開EIP親和性。 | 取值:
說明 打開EIP親和性開關后,如果SNAT綁定多個EIP,同一個客戶端將使用相同的EIP訪問公網,否則客戶端將從綁定的EIP中隨機選取EIP訪問公網。 |
返回值
Fn::GetAtt
SnatEntryIds:SNAT條目ID。
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
SourceVSwitchId:
AssociationProperty: ALIYUN::ECS::VSwitch::VSwitchId
Type: String
Label:
zh-cn: 網絡交換機ID
en: VSwitch ID
SnatIp:
Type: String
Description: The public IP address. Separate multiple EIPs with commas.
SnatTableId:
Type: String
Description: The ID of the SNAT table.
Resources:
SnatEntry:
Type: ALIYUN::VPC::SnatEntry
Properties:
SourceVSwitchIds:
- Ref: SourceVSwitchId
SnatIp:
Ref: SnatIp
SnatTableId:
Ref: SnatTableId
Outputs:
SnatEntryIds:
Description: The IDS of the SNAT entry.
Value:
Fn::GetAtt:
- SnatEntry
- SnatEntryIds
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"SourceVSwitchId": {
"AssociationProperty": "ALIYUN::ECS::VSwitch::VSwitchId",
"Type": "String",
"Label": {
"zh-cn": "網絡交換機ID",
"en": "VSwitch ID"
}
},
"SnatIp": {
"Type": "String",
"Description": "The public IP address. Separate multiple EIPs with commas."
},
"SnatTableId": {
"Type": "String",
"Description": "The ID of the SNAT table."
}
},
"Resources": {
"SnatEntry": {
"Type": "ALIYUN::VPC::SnatEntry",
"Properties": {
"SourceVSwitchIds": [
{
"Ref": "SourceVSwitchId"
}
],
"SnatIp": {
"Ref": "SnatIp"
},
"SnatTableId": {
"Ref": "SnatTableId"
}
}
}
},
"Outputs": {
"SnatEntryIds": {
"Description": "The IDS of the SNAT entry.",
"Value": {
"Fn::GetAtt": [
"SnatEntry",
"SnatEntryIds"
]
}
}
}
}
文檔內容是否對您有幫助?