Skip to content

354 - DNS Records

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

maml
{
  zone: "buttery-extension.biz"
  records: [
    {
      type: "MX"
      name: "@"
      value: "229.184.194.199"
      ttl: 3600
    }

    {
      type: "CNAME"
      name: "staging"
      value: "v=spf1 include:_spf.sleepy-in-joke.name ~all"
      ttl: 86400
    }

    {
      type: "A"
      name: "@"
      value: "v=spf1 include:_spf.noted-massage.name ~all"
      ttl: 3600
    }

    {
      type: "NS"
      name: "staging"
      value: "v=spf1 include:_spf.mindless-bonnet.biz ~all"
      ttl: 86400
    }

    {
      type: "A"
      name: "www"
      value: "avaricious-slide.net"
      ttl: 3600
    }
  ]
}

See Also