Skip to content

Data Source: proxmox_sdn_controller_evpn

The EVPN zone requires an external controller to manage the control plane. The EVPN controller plugin configures the Free Range Routing (frr) router.

Example Usage

data "proxmox_sdn_controller_evpn" "example" {
  id = "evpn1"
}

output "data_proxmox_sdn_controller_evpn" {
  value = {
    id     = data.proxmox_sdn_controller_evpn.example.id
    asn    = data.proxmox_sdn_controller_evpn.example.asn
    fabric = data.proxmox_sdn_controller_evpn.example.fabric
    peers  = data.proxmox_sdn_controller_evpn.example.peers
  }
}

Schema

Required

  • id (String) The unique identifier of the SDN controller

Read-Only

  • asn (Number) Autonomous System Number for the EVPN controller.
  • digest (String) Digest of the controller section.
  • fabric (String) ID of the fabric this EVPN controller belongs to.
  • peers (Set of String) Set of BGP peer IP addresses for the EVPN controller.