mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
11 lines
351 B
HCL
11 lines
351 B
HCL
data "proxmox_virtual_environment_groups" "example" {
|
|
depends_on = [proxmox_virtual_environment_group.example]
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_groups_example" {
|
|
value = tomap({
|
|
"comments" = data.proxmox_virtual_environment_groups.example.comments
|
|
"group_ids" = data.proxmox_virtual_environment_groups.example.group_ids
|
|
})
|
|
}
|