» panos_bgp

This resource allows you to add/update/delete a virtual router's BGP configuration.

Important Note: When it comes to BGP configuration, PAN-OS requires that BGP itself first be configured before you can add other BGP sub-config, such as dampening profiles or peer groups. Since every BGP resource must reference a virtual router, the key to accomplishing this is by pointing the virtual_router param for each BGP sub-config to panos_bgp.foo.virtual_router instead of panos_virtual_router.bar.name.

» Import Name

<virtual_router>

» Example Usage

resource "panos_bgp" "example" {
    virtual_router = "${panos_virtual_router.rtr.name}"
    router_id = "5.5.5.5"
    as_number = "42"
}

resource "panos_virtual_router" "rtr" {
    name = "my virtual router"
}

» Argument Reference

The following arguments are supported: