mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-02 19:43:00 +00:00
* feat: migrate `version` datasource to tf framework * set up documentation generator * add generated docs for network resources * fix test mux server, add import examples to network resources * fix network tests * fix shell examples
37 lines
1002 B
Markdown
37 lines
1002 B
Markdown
---
|
|
layout: page
|
|
title: proxmox_virtual_environment_version
|
|
parent: Data Sources
|
|
subcategory: Virtual Environment
|
|
description: |-
|
|
Retrieves API version details.
|
|
---
|
|
|
|
# Data Source: proxmox_virtual_environment_version
|
|
|
|
Retrieves API version details.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
data "proxmox_virtual_environment_version" "example" {}
|
|
|
|
output "data_proxmox_virtual_environment_version" {
|
|
value = {
|
|
release = data.proxmox_virtual_environment_version.example.release
|
|
repository_id = data.proxmox_virtual_environment_version.example.repository_id
|
|
version = data.proxmox_virtual_environment_version.example.version
|
|
}
|
|
}
|
|
```
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
## 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.
|