0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 11:02:59 +00:00
terraform-provider-proxmox/example/data_source_virtual_environment_access_groups.tf
2019-12-07 22:21:53 +01:00

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,
)}"
}