mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
10 lines
261 B
HCL
10 lines
261 B
HCL
data "proxmox_virtual_environment_pools" "example" {
|
|
depends_on = [proxmox_virtual_environment_pool.example]
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_pools_example" {
|
|
value = {
|
|
pool_ids = data.proxmox_virtual_environment_pools.example.pool_ids
|
|
}
|
|
}
|