2017-08-11 04:31:20 +08:00
## Configuration
2022-05-09 02:41:33 +08:00
To use this provider, add an entry to `creds.json` with `TYPE` set to `DIGITALOCEAN`
along with your [DigitalOcean OAuth Token ](https://cloud.digitalocean.com/settings/applications ).
Example:
2017-08-11 04:31:20 +08:00
2023-03-03 05:17:27 +08:00
{% code title="creds.json" %}
2022-02-18 01:22:31 +08:00
```json
2017-08-11 04:31:20 +08:00
{
2022-05-09 02:41:33 +08:00
"mydigitalocean": {
"TYPE": "DIGITALOCEAN",
2017-08-11 04:31:20 +08:00
"token": "your-digitalocean-ouath-token"
}
}
2022-02-18 01:22:31 +08:00
```
2023-03-03 05:17:27 +08:00
{% endcode %}
2017-08-11 04:31:20 +08:00
## Metadata
2017-10-12 01:13:31 +08:00
This provider does not recognize any special metadata fields unique to DigitalOcean.
2017-08-11 04:31:20 +08:00
## Usage
2023-03-11 21:42:01 +08:00
An example configuration:
2017-08-11 04:31:20 +08:00
2023-03-11 21:42:01 +08:00
{% code title="dnsconfig.js" %}
2023-01-20 20:56:20 +08:00
```javascript
2022-05-09 02:41:33 +08:00
var REG_NONE = NewRegistrar("none");
var DSP_DIGITALOCEAN = NewDnsProvider("mydigitalocean");
2017-08-11 04:31:20 +08:00
2022-05-09 02:41:33 +08:00
D("example.tld", REG_NONE, DnsProvider(DSP_DIGITALOCEAN),
A("test", "1.2.3.4")
2017-08-11 04:31:20 +08:00
);
2022-02-18 01:22:31 +08:00
```
2023-03-11 21:42:01 +08:00
{% endcode %}
2017-08-11 04:31:20 +08:00
## Activation
[Create OAuth Token ](https://cloud.digitalocean.com/settings/applications )
2020-01-25 01:21:01 +08:00
## Limitations
2020-11-18 21:22:31 +08:00
- Digitalocean DNS doesn't support `;` value with CAA-records ([DigitalOcean documentation](https://www.digitalocean.com/docs/networking/dns/how-to/create-caa-records/))
- While Digitalocean DNS supports TXT records with multiple strings,
2021-03-08 02:19:22 +08:00
their length is limited by the max API request of 512 octets.