0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 19:12:59 +00:00
terraform-provider-proxmox/example/data_source_virtual_environment_dns.tf
2020-01-01 04:42:34 +01:00

12 lines
396 B
HCL

data "proxmox_virtual_environment_dns" "example" {
node_name = "${data.proxmox_virtual_environment_nodes.example.names[0]}"
}
output "data_proxmox_virtual_environment_dns_example_domain" {
value = "${data.proxmox_virtual_environment_dns.example.domain}"
}
output "data_proxmox_virtual_environment_dns_example_servers" {
value = "${data.proxmox_virtual_environment_dns.example.servers}"
}