mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
12 lines
375 B
HCL
12 lines
375 B
HCL
data "proxmox_virtual_environment_role" "example" {
|
|
role_id = proxmox_virtual_environment_role.example.id
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_role_example_privileges" {
|
|
value = data.proxmox_virtual_environment_role.example.privileges
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_role_example_role_id" {
|
|
value = data.proxmox_virtual_environment_role.example.id
|
|
}
|