alicloud_vpc_bgp_network
更新时间:
Provides a VPC Bgp Network resource.
For information about VPC Bgp Network and how to use it, see What is Bgp Network.
-> NOTE: Available since v1.153.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_network" "example" {
dst_cidr_block = "192.168.0.0/24"
router_id = alicloud_express_connect_virtual_border_router.example.id
}
Argument Reference
The following arguments are supported:
dst_cidr_block
- (Required, ForceNew) The CIDR block of the virtual private cloud (VPC) or vSwitch that you want to connect to a data center.router_id
- (Required, ForceNew) The ID of the vRouter associated with the router interface.
Attributes Reference
The following attributes are exported:
id
- The resource ID of Bgp Network. The value formats as<router_id>:<dst_cidr_block>
.status
- The state of the advertised BGP network.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 3 mins) Used when create the Bgp Network.delete
- (Defaults to 1 mins) Used when delete the Bgp Network.
Import
VPC Bgp Network can be imported using the id, e.g.
$ terraform import alicloud_vpc_bgp_network.example <router_id>:<dst_cidr_block>
文档内容是否对您有帮助?