mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
11 lines
353 B
HCL
11 lines
353 B
HCL
data "proxmox_virtual_environment_groups" "example" {
|
|
depends_on = ["proxmox_virtual_environment_group.example"]
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_groups_example" {
|
|
value = "${map(
|
|
"comments", data.proxmox_virtual_environment_groups.example.comments,
|
|
"group_ids", data.proxmox_virtual_environment_groups.example.group_ids,
|
|
)}"
|
|
}
|