Skip to content

660 - DNS Records

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

maml
{
  zone: "admired-mentor.name"
  records: [
    {
      type: "TXT"
      name: "cdn"
      value: "questionable-fencing.info"
      ttl: 86400
    }

    {
      type: "TXT"
      name: "www"
      value: "awesome-pile.com"
      ttl: 3600
    }

    {
      type: "AAAA"
      name: "staging"
      value: "114.12.124.216"
      ttl: 3600
    }

    {
      type: "AAAA"
      name: "*"
      value: "v=spf1 include:_spf.imaginative-gastropod.org ~all"
      ttl: 3600
    }

    {
      type: "MX"
      name: "*"
      value: "17.54.60.78"
      ttl: 3600
    }

    {
      type: "MX"
      name: "*"
      value: "112.204.177.184"
      ttl: 86400
    }

    {
      type: "NS"
      name: "*"
      value: "145.239.145.104"
      ttl: 300
    }
  ]
}

See Also