ALIYUN::VPC::HaVipAssociation類型用於將HaVip綁定到ECS執行個體。
重要
1個ECS執行個體最多同時可以綁定5個HaVip。
1個HaVip最多同時可以綁定2個ECS執行個體。
文法
{
"Type": "ALIYUN::VPC::HaVipAssociation",
"Properties": {
"HaVipId": String,
"InstanceId": String,
"InstanceType": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
HaVipId | String | 是 | 否 | 高可用虛擬IP ID。 | 無。 |
InstanceId | String | 是 | 否 | ECS執行個體ID。 | 無。 |
InstanceType | String | 否 | 否 | 要綁定 HaVip 的執行個體類型。 | 取值:
|
傳回值
Fn::GetAtt
無。
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
InstanceId:
Type: String
Description: ECS Instance ID.
Label: InstanceId
HaVipID:
Type: String
Label: HaVipID
Description: HaVip ID.
Resources:
HaVipAssociation:
Type: ALIYUN::VPC::HaVipAssociation
Properties:
InstanceId:
Ref: InstanceId
HaVipId:
Ref: HaVipID
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"InstanceId": {
"Type": "String",
"Description": "ECS Instance ID.",
"Label": "InstanceId"
},
"HaVipID": {
"Type": "String",
"Label": "HaVipID",
"Description": "HaVip ID."
}
},
"Resources": {
"HaVipAssociation": {
"Type": "ALIYUN::VPC::HaVipAssociation",
"Properties": {
"InstanceId": {
"Ref": "InstanceId"
},
"HaVipId": {
"Ref": "HaVipID"
}
}
}
}
}