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"
}
}
}
}
}