mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-01 11:02:59 +00:00
9 lines
307 B
HCL
9 lines
307 B
HCL
data "proxmox_virtual_environment_access_groups" "example" {}
|
|
|
|
output "data_proxmox_virtual_environment_access_groups_example" {
|
|
value = "${map(
|
|
"comments", data.proxmox_virtual_environment_access_groups.example.comments,
|
|
"ids", data.proxmox_virtual_environment_access_groups.example.ids,
|
|
)}"
|
|
}
|