ALIYUN::VPC::BgpPeer は、特定の BGP グループに Border Gateway Protocol(BGP)ピアを追加するために使用されます。
構文
{
"Type": "ALIYUN::VPC::BgpPeer",
"Properties": {
"PeerIpAddress": String,
"EnableBfd": Boolean,
"BgpGroupId": String
}
}プロパティ
| プロパティ | タイプ | 必須 | 編集可能 | 説明 | 制約 |
| PeerIpAddress | String | いいえ | はい | BGP ピアの IP アドレス。 | なし |
| EnableBfd | Boolean | いいえ | はい | Bidirectional Forwarding Detection(BFD)機能を有効にするかどうかを指定します。 | 有効な値:
|
| BgpGroupId | String | はい | いいえ | BGP グループの ID。 | なし |
レスポンスパラメータ
Fn::GetAtt
BgpPeerId: BGP ピアの ID。
例
JSON形式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "BgpGroupId": { "Type": "String", "Description": "BGP グループの ID。" } }, "Resources": { "BgpPeer": { "Type": "ALIYUN::VPC::BgpPeer", "Properties": { "PeerIpAddress": "192.168.1.1", "EnableBfd": false, "BgpGroupId": { "Ref": "BgpGroupId" } } } }, "Outputs": { "BgpPeerId": { "Description": "BGP ピアの ID。", "Value": { "Fn::GetAtt": [ "BgpPeer", "BgpPeerId" ] } } } }