mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-22 11:28:33 +00:00
- Update primary support from Proxmox VE 8.x to 9.x - Change privilege examples from VM.Monitor to VM.GuestAgent.Audit (VM.Monitor removed in PVE 9.x) - Add backward compatibility notes for 8.x users - Update production requirements and examples Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
15 lines
423 B
HCL
15 lines
423 B
HCL
resource "proxmox_virtual_environment_role" "example" {
|
|
privileges = [
|
|
"VM.GuestAgent.Audit",
|
|
]
|
|
role_id = "terraform-provider-proxmox-example"
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_role_example_privileges" {
|
|
value = proxmox_virtual_environment_role.example.privileges
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_role_example_role_id" {
|
|
value = proxmox_virtual_environment_role.example.role_id
|
|
}
|