0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-26 05:15:39 +00:00
terraform-provider-proxmox/example/resource_virtual_environment_role.tf
Pavel Boldyrev da0164a147
feat(docs): update compatibility notes for PVE 9.x
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2025-08-17 20:56:30 -04:00

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
}