dns_aaaa_record_set (Data Source)

Use this data source to get DNS AAAA records of the host.

Example Usage

data "dns_aaaa_record_set" "google" {
  host = "google.com"
}

output "google_addrs" {
  value = join(",", data.dns_aaaa_record_set.google.addrs)
}

Schema

Required

Read-Only