0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00

map -> tomap TF API change

This commit is contained in:
Pavel Boldyrev 2021-09-09 14:43:00 -04:00
parent e554d93e5c
commit d3f323e66b
No known key found for this signature in database
GPG Key ID: 9A3B05A2B8921AD9

View File

@ -3,8 +3,8 @@ data "proxmox_virtual_environment_groups" "example" {
} }
output "data_proxmox_virtual_environment_groups_example" { output "data_proxmox_virtual_environment_groups_example" {
value = map( value = tomap({
"comments", data.proxmox_virtual_environment_groups.example.comments, "comments" = data.proxmox_virtual_environment_groups.example.comments
"group_ids", data.proxmox_virtual_environment_groups.example.group_ids, "group_ids" = data.proxmox_virtual_environment_groups.example.group_ids
) })
} }