mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 18:42:58 +00:00
16 lines
540 B
HCL
16 lines
540 B
HCL
data "proxmox_virtual_environment_roles" "example" {
|
|
depends_on = ["proxmox_virtual_environment_role.example"]
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_roles_example_privileges" {
|
|
value = "${data.proxmox_virtual_environment_roles.example.privileges}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_roles_example_role_ids" {
|
|
value = "${data.proxmox_virtual_environment_roles.example.role_ids}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_roles_example_special" {
|
|
value = "${data.proxmox_virtual_environment_roles.example.special}"
|
|
}
|