Skip to content

1043 - DNS Records

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

maml
{
  zone: "wavy-jump.net"
  records: [
    {
      type: "MX"
      name: "www"
      value: "general-recommendation.name"
      ttl: 3600
    }

    {
      type: "AAAA"
      name: "*"
      value: "v=spf1 include:_spf.phony-produce.biz ~all"
      ttl: 300
    }

    {
      type: "CNAME"
      name: "www"
      value: "v=spf1 include:_spf.insecure-import.info ~all"
      ttl: 86400
    }

    {
      type: "TXT"
      name: "mail"
      value: "reflecting-sundae.info"
      ttl: 300
    }
  ]
}

See Also