mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
16 lines
527 B
HCL
16 lines
527 B
HCL
data "proxmox_virtual_environment_group" "example" {
|
|
group_id = "${proxmox_virtual_environment_group.example.id}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_group_example_acl" {
|
|
value = "${data.proxmox_virtual_environment_group.example.acl}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_group_example_comment" {
|
|
value = "${data.proxmox_virtual_environment_group.example.comment}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_group_example_members" {
|
|
value = "${data.proxmox_virtual_environment_group.example.members}"
|
|
}
|