mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
15 lines
414 B
HCL
15 lines
414 B
HCL
resource "proxmox_virtual_environment_role" "example" {
|
|
privileges = [
|
|
"VM.Monitor",
|
|
]
|
|
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
|
|
}
|