mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-15 12:45:14 +08:00
bfa36ebbf8
Change the tests to skip test case with CAA `;` value for Digitalocean, because that specific feature isn't supported. Closes #588
1.1 KiB
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
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.