1. Packages
  2. Proxmox Virtual Environment (Proxmox VE)
  3. API Docs
  4. SDNZone
  5. Evpn
Proxmox Virtual Environment (Proxmox VE) v7.4.0 published on Sunday, Aug 17, 2025 by Daniel Muehlbachler-Pietrzykowski

proxmoxve.SDNZone.Evpn

Explore with Pulumi AI

proxmoxve logo
Proxmox Virtual Environment (Proxmox VE) v7.4.0 published on Sunday, Aug 17, 2025 by Daniel Muehlbachler-Pietrzykowski

    EVPN Zone in Proxmox SDN. The EVPN zone creates a routable Layer 3 network, capable of spanning across multiple clusters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
    
    const example = new proxmoxve.sdnzone.Evpn("example", {
        advertiseSubnets: true,
        controller: "evpn-controller1",
        disableArpNdSuppression: false,
        dns: "1.1.1.1",
        dnsZone: "example.com",
        exitNodes: [
            "pve-exit1",
            "pve-exit2",
        ],
        exitNodesLocalRouting: true,
        zoneId: "evpn1",
        ipam: "pve",
        mtu: 1450,
        nodes: ["pve"],
        primaryExitNode: "pve-exit1",
        reverseDns: "1.1.1.1",
        rtImport: "65000:65000",
        vrfVxlan: 4000,
    });
    
    import pulumi
    import pulumi_proxmoxve as proxmoxve
    
    example = proxmoxve.sdnzone.Evpn("example",
        advertise_subnets=True,
        controller="evpn-controller1",
        disable_arp_nd_suppression=False,
        dns="1.1.1.1",
        dns_zone="example.com",
        exit_nodes=[
            "pve-exit1",
            "pve-exit2",
        ],
        exit_nodes_local_routing=True,
        zone_id="evpn1",
        ipam="pve",
        mtu=1450,
        nodes=["pve"],
        primary_exit_node="pve-exit1",
        reverse_dns="1.1.1.1",
        rt_import="65000:65000",
        vrf_vxlan=4000)
    
    package main
    
    import (
    	"github.com/muhlba91/pulumi-proxmoxve/sdk/v7/go/proxmoxve/sdnzone"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sdnzone.NewEvpn(ctx, "example", &sdnzone.EvpnArgs{
    			AdvertiseSubnets:        pulumi.Bool(true),
    			Controller:              pulumi.String("evpn-controller1"),
    			DisableArpNdSuppression: pulumi.Bool(false),
    			Dns:                     pulumi.String("1.1.1.1"),
    			DnsZone:                 pulumi.String("example.com"),
    			ExitNodes: pulumi.StringArray{
    				pulumi.String("pve-exit1"),
    				pulumi.String("pve-exit2"),
    			},
    			ExitNodesLocalRouting: pulumi.Bool(true),
    			ZoneId:                pulumi.String("evpn1"),
    			Ipam:                  pulumi.String("pve"),
    			Mtu:                   pulumi.Int(1450),
    			Nodes: pulumi.StringArray{
    				pulumi.String("pve"),
    			},
    			PrimaryExitNode: pulumi.String("pve-exit1"),
    			ReverseDns:      pulumi.String("1.1.1.1"),
    			RtImport:        pulumi.String("65000:65000"),
    			VrfVxlan:        pulumi.Int(4000),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ProxmoxVE = Pulumi.ProxmoxVE;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new ProxmoxVE.SDNZone.Evpn("example", new()
        {
            AdvertiseSubnets = true,
            Controller = "evpn-controller1",
            DisableArpNdSuppression = false,
            Dns = "1.1.1.1",
            DnsZone = "example.com",
            ExitNodes = new[]
            {
                "pve-exit1",
                "pve-exit2",
            },
            ExitNodesLocalRouting = true,
            ZoneId = "evpn1",
            Ipam = "pve",
            Mtu = 1450,
            Nodes = new[]
            {
                "pve",
            },
            PrimaryExitNode = "pve-exit1",
            ReverseDns = "1.1.1.1",
            RtImport = "65000:65000",
            VrfVxlan = 4000,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import io.muehlbachler.pulumi.proxmoxve.SDNZone.Evpn;
    import io.muehlbachler.pulumi.proxmoxve.SDNZone.EvpnArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Evpn("example", EvpnArgs.builder()
                .advertiseSubnets(true)
                .controller("evpn-controller1")
                .disableArpNdSuppression(false)
                .dns("1.1.1.1")
                .dnsZone("example.com")
                .exitNodes(            
                    "pve-exit1",
                    "pve-exit2")
                .exitNodesLocalRouting(true)
                .zoneId("evpn1")
                .ipam("pve")
                .mtu(1450)
                .nodes("pve")
                .primaryExitNode("pve-exit1")
                .reverseDns("1.1.1.1")
                .rtImport("65000:65000")
                .vrfVxlan(4000)
                .build());
    
        }
    }
    
    resources:
      example:
        type: proxmoxve:SDNZone:Evpn
        properties:
          # Optional attributes
          advertiseSubnets: true
          controller: evpn-controller1
          disableArpNdSuppression: false
          # Generic optional attributes
          dns: 1.1.1.1
          dnsZone: example.com
          exitNodes:
            - pve-exit1
            - pve-exit2
          exitNodesLocalRouting: true
          zoneId: evpn1
          ipam: pve
          mtu: 1450
          nodes:
            - pve
          primaryExitNode: pve-exit1
          reverseDns: 1.1.1.1
          rtImport: 65000:65000
          vrfVxlan: 4000
    

    Create Evpn Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Evpn(name: string, args: EvpnArgs, opts?: CustomResourceOptions);
    @overload
    def Evpn(resource_name: str,
             args: EvpnArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Evpn(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             nodes: Optional[Sequence[str]] = None,
             controller: Optional[str] = None,
             zone_id: Optional[str] = None,
             vrf_vxlan: Optional[int] = None,
             dns: Optional[str] = None,
             exit_nodes: Optional[Sequence[str]] = None,
             exit_nodes_local_routing: Optional[bool] = None,
             ipam: Optional[str] = None,
             mtu: Optional[int] = None,
             dns_zone: Optional[str] = None,
             primary_exit_node: Optional[str] = None,
             reverse_dns: Optional[str] = None,
             rt_import: Optional[str] = None,
             advertise_subnets: Optional[bool] = None,
             disable_arp_nd_suppression: Optional[bool] = None)
    func NewEvpn(ctx *Context, name string, args EvpnArgs, opts ...ResourceOption) (*Evpn, error)
    public Evpn(string name, EvpnArgs args, CustomResourceOptions? opts = null)
    public Evpn(String name, EvpnArgs args)
    public Evpn(String name, EvpnArgs args, CustomResourceOptions options)
    
    type: proxmoxve:SDNZone:Evpn
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EvpnArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var evpnResource = new ProxmoxVE.SDNZone.Evpn("evpnResource", new()
    {
        Nodes = new[]
        {
            "string",
        },
        Controller = "string",
        ZoneId = "string",
        VrfVxlan = 0,
        Dns = "string",
        ExitNodes = new[]
        {
            "string",
        },
        ExitNodesLocalRouting = false,
        Ipam = "string",
        Mtu = 0,
        DnsZone = "string",
        PrimaryExitNode = "string",
        ReverseDns = "string",
        RtImport = "string",
        AdvertiseSubnets = false,
        DisableArpNdSuppression = false,
    });
    
    example, err := sdnzone.NewEvpn(ctx, "evpnResource", &sdnzone.EvpnArgs{
    	Nodes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Controller: pulumi.String("string"),
    	ZoneId:     pulumi.String("string"),
    	VrfVxlan:   pulumi.Int(0),
    	Dns:        pulumi.String("string"),
    	ExitNodes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ExitNodesLocalRouting:   pulumi.Bool(false),
    	Ipam:                    pulumi.String("string"),
    	Mtu:                     pulumi.Int(0),
    	DnsZone:                 pulumi.String("string"),
    	PrimaryExitNode:         pulumi.String("string"),
    	ReverseDns:              pulumi.String("string"),
    	RtImport:                pulumi.String("string"),
    	AdvertiseSubnets:        pulumi.Bool(false),
    	DisableArpNdSuppression: pulumi.Bool(false),
    })
    
    var evpnResource = new Evpn("evpnResource", EvpnArgs.builder()
        .nodes("string")
        .controller("string")
        .zoneId("string")
        .vrfVxlan(0)
        .dns("string")
        .exitNodes("string")
        .exitNodesLocalRouting(false)
        .ipam("string")
        .mtu(0)
        .dnsZone("string")
        .primaryExitNode("string")
        .reverseDns("string")
        .rtImport("string")
        .advertiseSubnets(false)
        .disableArpNdSuppression(false)
        .build());
    
    evpn_resource = proxmoxve.sdnzone.Evpn("evpnResource",
        nodes=["string"],
        controller="string",
        zone_id="string",
        vrf_vxlan=0,
        dns="string",
        exit_nodes=["string"],
        exit_nodes_local_routing=False,
        ipam="string",
        mtu=0,
        dns_zone="string",
        primary_exit_node="string",
        reverse_dns="string",
        rt_import="string",
        advertise_subnets=False,
        disable_arp_nd_suppression=False)
    
    const evpnResource = new proxmoxve.sdnzone.Evpn("evpnResource", {
        nodes: ["string"],
        controller: "string",
        zoneId: "string",
        vrfVxlan: 0,
        dns: "string",
        exitNodes: ["string"],
        exitNodesLocalRouting: false,
        ipam: "string",
        mtu: 0,
        dnsZone: "string",
        primaryExitNode: "string",
        reverseDns: "string",
        rtImport: "string",
        advertiseSubnets: false,
        disableArpNdSuppression: false,
    });
    
    type: proxmoxve:SDNZone:Evpn
    properties:
        advertiseSubnets: false
        controller: string
        disableArpNdSuppression: false
        dns: string
        dnsZone: string
        exitNodes:
            - string
        exitNodesLocalRouting: false
        ipam: string
        mtu: 0
        nodes:
            - string
        primaryExitNode: string
        reverseDns: string
        rtImport: string
        vrfVxlan: 0
        zoneId: string
    

    Evpn Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Evpn resource accepts the following input properties:

    Controller string
    EVPN controller address.
    Nodes List<string>
    The Proxmox nodes which the zone and associated VNets should be deployed on
    VrfVxlan int
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    ZoneId string
    The unique identifier of the SDN zone.
    AdvertiseSubnets bool
    Enable subnet advertisement for EVPN.
    DisableArpNdSuppression bool
    Disable ARP/ND suppression for EVPN.
    Dns string
    DNS API server address.
    DnsZone string
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    ExitNodes List<string>
    List of exit nodes for EVPN.
    ExitNodesLocalRouting bool
    Enable local routing for EVPN exit nodes.
    Ipam string
    IP Address Management system.
    Mtu int
    MTU value for the zone.
    PrimaryExitNode string
    Primary exit node for EVPN.
    ReverseDns string
    Reverse DNS API server address.
    RtImport string
    Route target import for EVPN.
    Controller string
    EVPN controller address.
    Nodes []string
    The Proxmox nodes which the zone and associated VNets should be deployed on
    VrfVxlan int
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    ZoneId string
    The unique identifier of the SDN zone.
    AdvertiseSubnets bool
    Enable subnet advertisement for EVPN.
    DisableArpNdSuppression bool
    Disable ARP/ND suppression for EVPN.
    Dns string
    DNS API server address.
    DnsZone string
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    ExitNodes []string
    List of exit nodes for EVPN.
    ExitNodesLocalRouting bool
    Enable local routing for EVPN exit nodes.
    Ipam string
    IP Address Management system.
    Mtu int
    MTU value for the zone.
    PrimaryExitNode string
    Primary exit node for EVPN.
    ReverseDns string
    Reverse DNS API server address.
    RtImport string
    Route target import for EVPN.
    controller String
    EVPN controller address.
    nodes List<String>
    The Proxmox nodes which the zone and associated VNets should be deployed on
    vrfVxlan Integer
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zoneId String
    The unique identifier of the SDN zone.
    advertiseSubnets Boolean
    Enable subnet advertisement for EVPN.
    disableArpNdSuppression Boolean
    Disable ARP/ND suppression for EVPN.
    dns String
    DNS API server address.
    dnsZone String
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exitNodes List<String>
    List of exit nodes for EVPN.
    exitNodesLocalRouting Boolean
    Enable local routing for EVPN exit nodes.
    ipam String
    IP Address Management system.
    mtu Integer
    MTU value for the zone.
    primaryExitNode String
    Primary exit node for EVPN.
    reverseDns String
    Reverse DNS API server address.
    rtImport String
    Route target import for EVPN.
    controller string
    EVPN controller address.
    nodes string[]
    The Proxmox nodes which the zone and associated VNets should be deployed on
    vrfVxlan number
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zoneId string
    The unique identifier of the SDN zone.
    advertiseSubnets boolean
    Enable subnet advertisement for EVPN.
    disableArpNdSuppression boolean
    Disable ARP/ND suppression for EVPN.
    dns string
    DNS API server address.
    dnsZone string
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exitNodes string[]
    List of exit nodes for EVPN.
    exitNodesLocalRouting boolean
    Enable local routing for EVPN exit nodes.
    ipam string
    IP Address Management system.
    mtu number
    MTU value for the zone.
    primaryExitNode string
    Primary exit node for EVPN.
    reverseDns string
    Reverse DNS API server address.
    rtImport string
    Route target import for EVPN.
    controller str
    EVPN controller address.
    nodes Sequence[str]
    The Proxmox nodes which the zone and associated VNets should be deployed on
    vrf_vxlan int
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zone_id str
    The unique identifier of the SDN zone.
    bool
    Enable subnet advertisement for EVPN.
    disable_arp_nd_suppression bool
    Disable ARP/ND suppression for EVPN.
    dns str
    DNS API server address.
    dns_zone str
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exit_nodes Sequence[str]
    List of exit nodes for EVPN.
    exit_nodes_local_routing bool
    Enable local routing for EVPN exit nodes.
    ipam str
    IP Address Management system.
    mtu int
    MTU value for the zone.
    primary_exit_node str
    Primary exit node for EVPN.
    reverse_dns str
    Reverse DNS API server address.
    rt_import str
    Route target import for EVPN.
    controller String
    EVPN controller address.
    nodes List<String>
    The Proxmox nodes which the zone and associated VNets should be deployed on
    vrfVxlan Number
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zoneId String
    The unique identifier of the SDN zone.
    advertiseSubnets Boolean
    Enable subnet advertisement for EVPN.
    disableArpNdSuppression Boolean
    Disable ARP/ND suppression for EVPN.
    dns String
    DNS API server address.
    dnsZone String
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exitNodes List<String>
    List of exit nodes for EVPN.
    exitNodesLocalRouting Boolean
    Enable local routing for EVPN exit nodes.
    ipam String
    IP Address Management system.
    mtu Number
    MTU value for the zone.
    primaryExitNode String
    Primary exit node for EVPN.
    reverseDns String
    Reverse DNS API server address.
    rtImport String
    Route target import for EVPN.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Evpn resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Evpn Resource

    Get an existing Evpn resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EvpnState, opts?: CustomResourceOptions): Evpn
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            advertise_subnets: Optional[bool] = None,
            controller: Optional[str] = None,
            disable_arp_nd_suppression: Optional[bool] = None,
            dns: Optional[str] = None,
            dns_zone: Optional[str] = None,
            exit_nodes: Optional[Sequence[str]] = None,
            exit_nodes_local_routing: Optional[bool] = None,
            ipam: Optional[str] = None,
            mtu: Optional[int] = None,
            nodes: Optional[Sequence[str]] = None,
            primary_exit_node: Optional[str] = None,
            reverse_dns: Optional[str] = None,
            rt_import: Optional[str] = None,
            vrf_vxlan: Optional[int] = None,
            zone_id: Optional[str] = None) -> Evpn
    func GetEvpn(ctx *Context, name string, id IDInput, state *EvpnState, opts ...ResourceOption) (*Evpn, error)
    public static Evpn Get(string name, Input<string> id, EvpnState? state, CustomResourceOptions? opts = null)
    public static Evpn get(String name, Output<String> id, EvpnState state, CustomResourceOptions options)
    resources:  _:    type: proxmoxve:SDNZone:Evpn    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdvertiseSubnets bool
    Enable subnet advertisement for EVPN.
    Controller string
    EVPN controller address.
    DisableArpNdSuppression bool
    Disable ARP/ND suppression for EVPN.
    Dns string
    DNS API server address.
    DnsZone string
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    ExitNodes List<string>
    List of exit nodes for EVPN.
    ExitNodesLocalRouting bool
    Enable local routing for EVPN exit nodes.
    Ipam string
    IP Address Management system.
    Mtu int
    MTU value for the zone.
    Nodes List<string>
    The Proxmox nodes which the zone and associated VNets should be deployed on
    PrimaryExitNode string
    Primary exit node for EVPN.
    ReverseDns string
    Reverse DNS API server address.
    RtImport string
    Route target import for EVPN.
    VrfVxlan int
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    ZoneId string
    The unique identifier of the SDN zone.
    AdvertiseSubnets bool
    Enable subnet advertisement for EVPN.
    Controller string
    EVPN controller address.
    DisableArpNdSuppression bool
    Disable ARP/ND suppression for EVPN.
    Dns string
    DNS API server address.
    DnsZone string
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    ExitNodes []string
    List of exit nodes for EVPN.
    ExitNodesLocalRouting bool
    Enable local routing for EVPN exit nodes.
    Ipam string
    IP Address Management system.
    Mtu int
    MTU value for the zone.
    Nodes []string
    The Proxmox nodes which the zone and associated VNets should be deployed on
    PrimaryExitNode string
    Primary exit node for EVPN.
    ReverseDns string
    Reverse DNS API server address.
    RtImport string
    Route target import for EVPN.
    VrfVxlan int
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    ZoneId string
    The unique identifier of the SDN zone.
    advertiseSubnets Boolean
    Enable subnet advertisement for EVPN.
    controller String
    EVPN controller address.
    disableArpNdSuppression Boolean
    Disable ARP/ND suppression for EVPN.
    dns String
    DNS API server address.
    dnsZone String
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exitNodes List<String>
    List of exit nodes for EVPN.
    exitNodesLocalRouting Boolean
    Enable local routing for EVPN exit nodes.
    ipam String
    IP Address Management system.
    mtu Integer
    MTU value for the zone.
    nodes List<String>
    The Proxmox nodes which the zone and associated VNets should be deployed on
    primaryExitNode String
    Primary exit node for EVPN.
    reverseDns String
    Reverse DNS API server address.
    rtImport String
    Route target import for EVPN.
    vrfVxlan Integer
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zoneId String
    The unique identifier of the SDN zone.
    advertiseSubnets boolean
    Enable subnet advertisement for EVPN.
    controller string
    EVPN controller address.
    disableArpNdSuppression boolean
    Disable ARP/ND suppression for EVPN.
    dns string
    DNS API server address.
    dnsZone string
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exitNodes string[]
    List of exit nodes for EVPN.
    exitNodesLocalRouting boolean
    Enable local routing for EVPN exit nodes.
    ipam string
    IP Address Management system.
    mtu number
    MTU value for the zone.
    nodes string[]
    The Proxmox nodes which the zone and associated VNets should be deployed on
    primaryExitNode string
    Primary exit node for EVPN.
    reverseDns string
    Reverse DNS API server address.
    rtImport string
    Route target import for EVPN.
    vrfVxlan number
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zoneId string
    The unique identifier of the SDN zone.
    advertise_subnets bool
    Enable subnet advertisement for EVPN.
    controller str
    EVPN controller address.
    disable_arp_nd_suppression bool
    Disable ARP/ND suppression for EVPN.
    dns str
    DNS API server address.
    dns_zone str
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exit_nodes Sequence[str]
    List of exit nodes for EVPN.
    exit_nodes_local_routing bool
    Enable local routing for EVPN exit nodes.
    ipam str
    IP Address Management system.
    mtu int
    MTU value for the zone.
    nodes Sequence[str]
    The Proxmox nodes which the zone and associated VNets should be deployed on
    primary_exit_node str
    Primary exit node for EVPN.
    reverse_dns str
    Reverse DNS API server address.
    rt_import str
    Route target import for EVPN.
    vrf_vxlan int
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zone_id str
    The unique identifier of the SDN zone.
    advertiseSubnets Boolean
    Enable subnet advertisement for EVPN.
    controller String
    EVPN controller address.
    disableArpNdSuppression Boolean
    Disable ARP/ND suppression for EVPN.
    dns String
    DNS API server address.
    dnsZone String
    DNS domain name. Used to register hostnames, such as <hostname>.<domain>. The DNS zone must already exist on the DNS server.
    exitNodes List<String>
    List of exit nodes for EVPN.
    exitNodesLocalRouting Boolean
    Enable local routing for EVPN exit nodes.
    ipam String
    IP Address Management system.
    mtu Number
    MTU value for the zone.
    nodes List<String>
    The Proxmox nodes which the zone and associated VNets should be deployed on
    primaryExitNode String
    Primary exit node for EVPN.
    reverseDns String
    Reverse DNS API server address.
    rtImport String
    Route target import for EVPN.
    vrfVxlan Number
    VRF VXLAN-ID used for dedicated routing interconnect between VNets. It must be different than the VXLAN-ID of the VNets.
    zoneId String
    The unique identifier of the SDN zone.

    Import

    #!/usr/bin/env sh

    EVPN SDN zone can be imported using its unique identifier (zone ID)

    $ pulumi import proxmoxve:SDNZone/evpn:Evpn example evpn1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    proxmoxve muhlba91/pulumi-proxmoxve
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the proxmox Terraform Provider.
    proxmoxve logo
    Proxmox Virtual Environment (Proxmox VE) v7.4.0 published on Sunday, Aug 17, 2025 by Daniel Muehlbachler-Pietrzykowski