0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 18:42:58 +00:00
terraform-provider-proxmox/example/data_source_virtual_environment_access_groups.tf
2019-12-07 21:15:59 +01:00

9 lines
299 B
HCL

data "proxmox_virtual_environment_access_groups" "example" {}
output "data_proxmox_virtual_environment_access_groups" {
value = "${map(
"comments", data.proxmox_virtual_environment_access_groups.example.comments,
"ids", data.proxmox_virtual_environment_access_groups.example.ids,
)}"
}