mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-04 21:14:05 +00:00
13 lines
531 B
HCL
13 lines
531 B
HCL
data "proxmox_virtual_environment_access_group" "example" {
|
|
count = length(data.proxmox_virtual_environment_access_groups.example.ids)
|
|
id = element(data.proxmox_virtual_environment_access_groups.example.ids, count.index)
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_access_group_example_comments" {
|
|
value = data.proxmox_virtual_environment_access_group.example.*.comment
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_access_group_example_members" {
|
|
value = data.proxmox_virtual_environment_access_group.example.*.members
|
|
}
|