mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
16 lines
521 B
HCL
16 lines
521 B
HCL
data "proxmox_virtual_environment_pool" "example" {
|
|
pool_id = "${proxmox_virtual_environment_pool.example.id}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_pool_example_comment" {
|
|
value = "${data.proxmox_virtual_environment_pool.example.comment}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_pool_example_members" {
|
|
value = "${data.proxmox_virtual_environment_pool.example.members}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_pool_example_pool_id" {
|
|
value = "${data.proxmox_virtual_environment_pool.example.id}"
|
|
}
|