Records
A record is an RRset: one name, one type, and avalues array. Updating a
record replaces the value list wholesale.
- Console
- API
Open the zone from DNS and choose Add Record. Give it a Name —
a subdomain like
www, or @ for the apex — pick a Type, and put one
entry per line in Values. That list is the RRset. TTL is optional.There is no way to stage a value.
disabled: true is refused — there is
nowhere to keep a value that is not served, so it used to be accepted and
then dropped, which reported success and lost the value. To take an address
out of an RRset, remove it from values.Pointing a zone apex at something
There is noALIAS record type and no CNAME flattening. The apex takes
addresses, so what you put there has to be an address that stays put.
For anything on Basaltic it already is. A load balancer is reached through a
floating IP you allocate and hold, and that address does
not change for as long as you hold it — so an A record at the apex pointing at
it is stable. The same goes for an instance with a floating IP attached.
For a target somebody else runs — a CDN, a hosted front door — you are usually
given a hostname and no addresses. The addresses behind it are theirs to rotate,
and often differ by where the query came from, so there is nothing there that is
safe to pin at your apex. Put the CNAME on a subdomain such as www, and send
the apex to it with an HTTP redirect from whatever you do control.
Platform-managed records
The SOA, the apex NS set, and the whole DNSSEC family are stamped and maintained by this platform. They carrymanaged: true, and they cannot be
created, updated or deleted through the API.
Listing records does not return them. On a signed zone they outnumber your
own records — there is an NSEC3 per name, plus the DS set, the DNSKEY and
the SOA — so returning them by default would mean paging through more of our
records than yours to find anything. The DNSSEC material worth having is on the
zone itself, under dnssec.
Pass include_managed=true to get the zone exactly as it is served: