Skip to content

Data Source: proxmox_version

Retrieves API version details.

Example Usage

data "proxmox_version" "example" {}

output "data_proxmox_version" {
  value = {
    release       = data.proxmox_version.example.release
    repository_id = data.proxmox_version.example.repository_id
    version       = data.proxmox_version.example.version
  }
}

Schema

Read-Only

  • id (String) Placeholder identifier attribute.
  • release (String) The current Proxmox VE point release in x.y format.
  • repository_id (String) The short git revision from which this version was build.
  • version (String) The full pve-manager package version of this node.