GlueRecord
import type { GlueRecord } from "https://googleapis.deno.dev/v1/domains:v1.ts";
Defines a host on your domain that is a DNS name server for your domain
and/or other domains. Glue records are a way of making the IP address of a
name server known, even when it serves DNS queries for its parent domain. For
example, when ns.example.com
is a name server for example.com
, the host
ns.example.com
must have a glue record to break the circular DNS reference.
interface GlueRecord {
hostName?: string;
ipv4Addresses?: string[];
ipv6Addresses?: string[];
}