2017-08-10 23:31:20 +03:00
---
2017-10-11 08:33:17 -04:00
name: DigitalOcean
title: DigitalOcean Provider
2017-08-10 23:31:20 +03:00
layout: default
jsId: DIGITALOCEAN
---
2017-10-11 08:33:17 -04:00
# DigitalOcean Provider
2017-08-10 23:31:20 +03:00
## Configuration
2017-10-11 13:13:31 -04:00
In your credentials file, you must provide your
2019-05-23 06:29:21 -07:00
[DigitalOcean OAuth Token ](https://cloud.digitalocean.com/settings/applications )
2017-08-10 23:31:20 +03:00
2022-02-17 18:22:31 +01:00
```json
2017-08-10 23:31:20 +03:00
{
2017-10-11 08:33:52 -04:00
"digitalocean": {
2017-08-10 23:31:20 +03:00
"token": "your-digitalocean-ouath-token"
}
}
2022-02-17 18:22:31 +01:00
```
2017-08-10 23:31:20 +03:00
## Metadata
2017-10-11 13:13:31 -04:00
This provider does not recognize any special metadata fields unique to DigitalOcean.
2017-08-10 23:31:20 +03:00
## Usage
2017-10-11 13:13:31 -04:00
Example Javascript:
2017-08-10 23:31:20 +03:00
2022-02-17 18:22:31 +01:00
```js
2017-10-11 08:33:52 -04:00
var REG_NONE = NewRegistrar('none', 'NONE')
2017-12-11 09:02:13 -06:00
var DIGITALOCEAN = NewDnsProvider("digitalocean", "DIGITALOCEAN");
2017-08-10 23:31:20 +03:00
2017-10-11 08:33:52 -04:00
D("example.tld", REG_NONE, DnsProvider(DIGITALOCEAN),
2017-08-10 23:31:20 +03:00
A("test","1.2.3.4")
);
2022-02-17 18:22:31 +01:00
```
2017-08-10 23:31:20 +03:00
## Activation
[Create OAuth Token ](https://cloud.digitalocean.com/settings/applications )
2020-01-24 19:21:01 +02:00
## Limitations
2020-11-18 08:22:31 -05: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-07 13:19:22 -05:00
their length is limited by the max API request of 512 octets.