ALIYUN::VPC::BgpPeer类型用于向指定的BGP组中添加BGP邻居。
语法
{
"Type": "ALIYUN::VPC::BgpPeer",
"Properties": {
"PeerIpAddress": String,
"EnableBfd": Boolean,
"BgpGroupId": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
---|---|---|---|---|---|
PeerIpAddress | String | 否 | 是 | BGP邻居的IP地址。 | 无 |
EnableBfd | Boolean | 否 | 是 | 是否开启BFD功能。 | 取值:
|
BgpGroupId | String | 是 | 否 | BGP组的ID。 | 无 |
返回值
Fn::GetAtt
BgpPeerId:BGP邻居的ID。
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "BgpGroupId": { "Type": "String", "Description": "The ID of the BGP group." } }, "Resources": { "BgpPeer": { "Type": "ALIYUN::VPC::BgpPeer", "Properties": { "PeerIpAddress": "192.168.1.1", "EnableBfd": false, "BgpGroupId": { "Ref": "BgpGroupId" } } } }, "Outputs": { "BgpPeerId": { "Description": "The ID of the BGP peer.", "Value": { "Fn::GetAtt": [ "BgpPeer", "BgpPeerId" ] } } } }