Skip to content

855 - DNS Records

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

maml
{
  zone: "gray-fireplace.org"
  records: [
    {
      type: "A"
      name: "cdn"
      value: "167.123.174.55"
      ttl: 86400
    }

    {
      type: "CNAME"
      name: "staging"
      value: "v=spf1 include:_spf.expert-fit.biz ~all"
      ttl: 300
    }

    {
      type: "TXT"
      name: "mail"
      value: "v=spf1 include:_spf.merry-forager.biz ~all"
      ttl: 300
    }

    {
      type: "TXT"
      name: "www"
      value: "v=spf1 include:_spf.physical-custom.biz ~all"
      ttl: 3600
    }

    {
      type: "AAAA"
      name: "staging"
      value: "v=spf1 include:_spf.hurtful-gerbil.info ~all"
      ttl: 3600
    }

    {
      type: "TXT"
      name: "api"
      value: "round-haversack.name"
      ttl: 86400
    }

    {
      type: "A"
      name: "mail"
      value: "v=spf1 include:_spf.kosher-community.org ~all"
      ttl: 86400
    }
  ]
}

See Also