dnscontrol/docs/_providers/digitalocean.md
Juho Teperi bfa36ebbf8 DIGITALOCEAN: CAA is supported with some caveats (#592)
Change the tests to skip test case with CAA `;` value for Digitalocean,
because that specific feature isn't supported.

Closes #588
2020-01-24 12:21:01 -05:00

1.1 KiB

name title layout jsId
DigitalOcean DigitalOcean Provider default DIGITALOCEAN

DigitalOcean Provider

Configuration

In your credentials file, you must provide your DigitalOcean OAuth Token

{% highlight json %} { "digitalocean": { "token": "your-digitalocean-ouath-token" } } {% endhighlight %}

Metadata

This provider does not recognize any special metadata fields unique to DigitalOcean.

Usage

Example Javascript:

{% highlight js %} var REG_NONE = NewRegistrar('none', 'NONE') var DIGITALOCEAN = NewDnsProvider("digitalocean", "DIGITALOCEAN");

D("example.tld", REG_NONE, DnsProvider(DIGITALOCEAN), A("test","1.2.3.4") ); {%endhighlight%}

Activation

Create OAuth Token

Limitations

  • Digialocean DNS doesn't support ; value with CAA-records (DigitalOcean documentation)
  • No support for TXT records with multiple strings, as the API prevents espacing quotes.