Skip to content

056 - DNS Records

DNS zone record entries. This is an example of a MAML document.

maml
{
  zone: "neat-typewriter.org"
  records: [
    {
      type: "NS"
      name: "www"
      value: "v=spf1 include:_spf.nocturnal-tectonics.net ~all"
      ttl: 300
    }

    {
      type: "TXT"
      name: "api"
      value: "v=spf1 include:_spf.murky-yogurt.info ~all"
      ttl: 86400
    }

    {
      type: "TXT"
      name: "api"
      value: "v=spf1 include:_spf.average-developmental.com ~all"
      ttl: 3600
    }

    {
      type: "CNAME"
      name: "cdn"
      value: "165.122.150.41"
      ttl: 3600
    }

    {
      type: "AAAA"
      name: "api"
      value: "68.208.124.255"
      ttl: 3600
    }

    {
      type: "TXT"
      name: "mail"
      value: "178.17.148.112"
      ttl: 300
    }
  ]
}

See Also