published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
VLAN Zone in Proxmox SDN. It uses an existing local Linux or OVS bridge to connect to the node’s physical interface. It uses VLAN tagging defined in the VNet to isolate the network segments. This allows connectivity of VMs between different nodes.
Create Vlan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Vlan(name: string, args: VlanArgs, opts?: CustomResourceOptions);@overload
def Vlan(resource_name: str,
args: VlanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Vlan(resource_name: str,
opts: Optional[ResourceOptions] = None,
bridge: Optional[str] = None,
resource_id: Optional[str] = None,
dns: Optional[str] = None,
dns_zone: Optional[str] = None,
ipam: Optional[str] = None,
mtu: Optional[int] = None,
nodes: Optional[Sequence[str]] = None,
reverse_dns: Optional[str] = None)func NewVlan(ctx *Context, name string, args VlanArgs, opts ...ResourceOption) (*Vlan, error)public Vlan(string name, VlanArgs args, CustomResourceOptions? opts = null)type: proxmoxve:sdn/zone/vlan:Vlan
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 VlanArgs
- 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 VlanArgs
- 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 VlanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VlanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VlanArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Vlan 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 Vlan resource accepts the following input properties:
- Bridge string
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- Resource
Id string - The unique identifier of the SDN zone.
- Dns string
- DNS API server address.
- Dns
Zone string - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - Ipam string
- IP Address Management system.
- Mtu int
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- Nodes List<string>
- The Proxmox nodes which the zone and associated VNets should be deployed on
- Reverse
Dns string - Reverse DNS API server address.
- Bridge string
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- Resource
Id string - The unique identifier of the SDN zone.
- Dns string
- DNS API server address.
- Dns
Zone string - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - Ipam string
- IP Address Management system.
- Mtu int
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- Nodes []string
- The Proxmox nodes which the zone and associated VNets should be deployed on
- Reverse
Dns string - Reverse DNS API server address.
- bridge String
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- resource
Id String - The unique identifier of the SDN zone.
- dns String
- DNS API server address.
- dns
Zone String - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - ipam String
- IP Address Management system.
- mtu Integer
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes List<String>
- The Proxmox nodes which the zone and associated VNets should be deployed on
- reverse
Dns String - Reverse DNS API server address.
- bridge string
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- resource
Id string - The unique identifier of the SDN zone.
- dns string
- DNS API server address.
- dns
Zone string - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - ipam string
- IP Address Management system.
- mtu number
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes string[]
- The Proxmox nodes which the zone and associated VNets should be deployed on
- reverse
Dns string - Reverse DNS API server address.
- bridge str
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- resource_
id str - The unique identifier of the SDN zone.
- 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. - ipam str
- IP Address Management system.
- mtu int
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes Sequence[str]
- The Proxmox nodes which the zone and associated VNets should be deployed on
- reverse_
dns str - Reverse DNS API server address.
- bridge String
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- resource
Id String - The unique identifier of the SDN zone.
- dns String
- DNS API server address.
- dns
Zone String - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - ipam String
- IP Address Management system.
- mtu Number
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes List<String>
- The Proxmox nodes which the zone and associated VNets should be deployed on
- reverse
Dns String - Reverse DNS API server address.
Outputs
All input properties are implicitly available as output properties. Additionally, the Vlan resource produces the following output properties:
Look up Existing Vlan Resource
Get an existing Vlan 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?: VlanState, opts?: CustomResourceOptions): Vlan@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bridge: Optional[str] = None,
dns: Optional[str] = None,
dns_zone: Optional[str] = None,
ipam: Optional[str] = None,
mtu: Optional[int] = None,
nodes: Optional[Sequence[str]] = None,
pending: Optional[bool] = None,
resource_id: Optional[str] = None,
reverse_dns: Optional[str] = None,
state: Optional[str] = None) -> Vlanfunc GetVlan(ctx *Context, name string, id IDInput, state *VlanState, opts ...ResourceOption) (*Vlan, error)public static Vlan Get(string name, Input<string> id, VlanState? state, CustomResourceOptions? opts = null)public static Vlan get(String name, Output<String> id, VlanState state, CustomResourceOptions options)resources: _: type: proxmoxve:sdn/zone/vlan:Vlan 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.
- Bridge string
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- Dns string
- DNS API server address.
- Dns
Zone string - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - Ipam string
- IP Address Management system.
- Mtu int
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- Nodes List<string>
- The Proxmox nodes which the zone and associated VNets should be deployed on
- Pending bool
- Indicates if the zone has pending configuration changes that need to be applied.
- Resource
Id string - The unique identifier of the SDN zone.
- Reverse
Dns string - Reverse DNS API server address.
- State string
- Indicates the current state of the zone.
- Bridge string
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- Dns string
- DNS API server address.
- Dns
Zone string - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - Ipam string
- IP Address Management system.
- Mtu int
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- Nodes []string
- The Proxmox nodes which the zone and associated VNets should be deployed on
- Pending bool
- Indicates if the zone has pending configuration changes that need to be applied.
- Resource
Id string - The unique identifier of the SDN zone.
- Reverse
Dns string - Reverse DNS API server address.
- State string
- Indicates the current state of the zone.
- bridge String
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- dns String
- DNS API server address.
- dns
Zone String - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - ipam String
- IP Address Management system.
- mtu Integer
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes List<String>
- The Proxmox nodes which the zone and associated VNets should be deployed on
- pending Boolean
- Indicates if the zone has pending configuration changes that need to be applied.
- resource
Id String - The unique identifier of the SDN zone.
- reverse
Dns String - Reverse DNS API server address.
- state String
- Indicates the current state of the zone.
- bridge string
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- dns string
- DNS API server address.
- dns
Zone string - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - ipam string
- IP Address Management system.
- mtu number
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes string[]
- The Proxmox nodes which the zone and associated VNets should be deployed on
- pending boolean
- Indicates if the zone has pending configuration changes that need to be applied.
- resource
Id string - The unique identifier of the SDN zone.
- reverse
Dns string - Reverse DNS API server address.
- state string
- Indicates the current state of the zone.
- bridge str
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- 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. - ipam str
- IP Address Management system.
- mtu int
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes Sequence[str]
- The Proxmox nodes which the zone and associated VNets should be deployed on
- pending bool
- Indicates if the zone has pending configuration changes that need to be applied.
- resource_
id str - The unique identifier of the SDN zone.
- reverse_
dns str - Reverse DNS API server address.
- state str
- Indicates the current state of the zone.
- bridge String
- The local bridge or OVS switch, already configured on each node that allows node-to-node connection.
- dns String
- DNS API server address.
- dns
Zone String - DNS domain name. Used to register hostnames, such as
<hostname>.<domain>. The DNS zone must already exist on the DNS server. - ipam String
- IP Address Management system.
- mtu Number
- MTU value for the zone. There is no support to reset this value back to PVE default once set due to API limitation.
- nodes List<String>
- The Proxmox nodes which the zone and associated VNets should be deployed on
- pending Boolean
- Indicates if the zone has pending configuration changes that need to be applied.
- resource
Id String - The unique identifier of the SDN zone.
- reverse
Dns String - Reverse DNS API server address.
- state String
- Indicates the current state of the zone.
Package Details
- Repository
- proxmoxve muhlba91/pulumi-proxmoxve
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
proxmoxTerraform Provider.
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
