0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-02 03:22:59 +00:00
terraform-provider-proxmox/example/data_source_virtual_environment_access_group.tf
2019-12-08 17:59:05 +01:00

12 lines
443 B
HCL

data "proxmox_virtual_environment_access_group" "example" {
group_id = "${proxmox_virtual_environment_access_group.example.id}"
}
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}"
}