mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
20 lines
667 B
HCL
20 lines
667 B
HCL
data "proxmox_virtual_environment_hosts" "example" {
|
|
node_name = data.proxmox_virtual_environment_nodes.example.names[0]
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_hosts_example_addresses" {
|
|
value = data.proxmox_virtual_environment_hosts.example.addresses
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_hosts_example_digest" {
|
|
value = data.proxmox_virtual_environment_hosts.example.digest
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_hosts_example_entries" {
|
|
value = data.proxmox_virtual_environment_hosts.example.entries
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_hosts_example_hostnames" {
|
|
value = data.proxmox_virtual_environment_hosts.example.hostnames
|
|
}
|