alicloud_vpc_bgp_group
更新时间:
Provides a VPC Bgp Group resource.
For information about VPC Bgp Group and how to use it, see What is Bgp Group.
-> NOTE: Available since v1.152.0.
Example Usage
Basic Usage
provider "alicloud" {
region = "cn-hangzhou"
}
variable "name" {
default = "tf-example"
}
data "alicloud_express_connect_physical_connections" "example" {
name_regex = "^preserved-NODELETING"
}
resource "random_integer" "vlan_id" {
max = 2999
min = 1
}
resource "alicloud_express_connect_virtual_border_router" "example" {
local_gateway_ip = "10.0.0.1"
peer_gateway_ip = "10.0.0.2"
peering_subnet_mask = "255.255.255.252"
physical_connection_id = data.alicloud_express_connect_physical_connections.example.connections.0.id
virtual_border_router_name = var.name
vlan_id = random_integer.vlan_id.id
min_rx_interval = 1000
min_tx_interval = 1000
detect_multiplier = 10
}
resource "alicloud_vpc_bgp_group" "example" {
auth_key = "YourPassword+12345678"
bgp_group_name = var.name
description = var.name
peer_asn = 1111
router_id = alicloud_express_connect_virtual_border_router.example.id
is_fake_asn = true
}
Argument Reference
The following arguments are supported:
auth_key
- (Optional) The authentication key of the BGP group.bgp_group_name
- (Optional) The name of the BGP group. The name must be2
to128
characters in length and can contain digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter but cannot start withhttp://
orhttps://
.description
- (Optional) The description of the BGP group. The description must be2
to256
characters in length. It must start with a letter but cannot start withhttp://
orhttps://
.is_fake_asn
- (Optional) The is fake asn. A router that runs BGP typically belongs to only one AS. In some cases, for example, the AS needs to be migrated or is merged with another AS, a new AS number replaces the original one.local_asn
- (Optional) The AS number on the Alibaba Cloud side.peer_asn
- (Required) The AS number of the BGP peer.router_id
- (Required, ForceNew) The ID of the VBR.
Attributes Reference
The following attributes are exported:
id
- The resource ID in terraform of Bgp Group.status
- The status of the resource.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 5 mins) Used when create the Bgp Group.delete
- (Defaults to 5 mins) Used when delete the Bgp Group.update
- (Defaults to 5 mins) Used when update the Bgp Group.
Import
VPC Bgp Group can be imported using the id, e.g.
$ terraform import alicloud_vpc_bgp_group.example <id>
文档内容是否对您有帮助?