--- layout: page title: proxmox_virtual_environment_sdn_zone_vlan parent: Data Sources subcategory: Virtual Environment description: |- Retrieves information about a 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. --- # Data Source: proxmox_virtual_environment_sdn_zone_vlan Retrieves information about a 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. ## Example Usage ```terraform data "proxmox_virtual_environment_sdn_zone_vlan" "example" { id = "vlan1" } output "data_proxmox_virtual_environment_sdn_zone_vlan" { value = { id = data.proxmox_virtual_environment_sdn_zone_vlan.example.id nodes = data.proxmox_virtual_environment_sdn_zone_vlan.example.nodes bridge = data.proxmox_virtual_environment_sdn_zone_vlan.example.bridge mtu = data.proxmox_virtual_environment_sdn_zone_vlan.example.mtu dns = data.proxmox_virtual_environment_sdn_zone_vlan.example.dns dns_zone = data.proxmox_virtual_environment_sdn_zone_vlan.example.dns_zone ipam = data.proxmox_virtual_environment_sdn_zone_vlan.example.ipam reverse_dns = data.proxmox_virtual_environment_sdn_zone_vlan.example.reverse_dns } } ``` ## Schema ### Required - `id` (String) The unique identifier of the SDN zone. ### Read-Only - `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 `.`. The DNS zone must already exist on the DNS server. - `ipam` (String) IP Address Management system. - `mtu` (Number) MTU value for the zone. - `nodes` (Set of String) The Proxmox nodes which the zone and associated VNets are deployed on - `reverse_dns` (String) Reverse DNS API server address.