mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-01 02:52:58 +00:00
14 lines
528 B
HCL
14 lines
528 B
HCL
data "proxmox_virtual_environment_access_roles" "example" {}
|
|
|
|
output "data_proxmox_virtual_environment_access_roles_example_privileges" {
|
|
value = "${data.proxmox_virtual_environment_access_roles.example.privileges}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_access_roles_example_role_ids" {
|
|
value = "${data.proxmox_virtual_environment_access_roles.example.role_ids}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_access_roles_example_special" {
|
|
value = "${data.proxmox_virtual_environment_access_roles.example.special}"
|
|
}
|