2017-10-12 09:21:36 -04:00
|
|
|
## Configuration
|
|
|
|
|
2022-05-08 14:41:33 -04:00
|
|
|
To use this provider, add an entry to `creds.json` with `TYPE` set to `VULTR`
|
|
|
|
along with a Vultr personal access token.
|
|
|
|
|
|
|
|
Example:
|
2017-10-12 09:21:36 -04:00
|
|
|
|
2022-02-17 18:22:31 +01:00
|
|
|
```json
|
2017-10-12 09:21:36 -04:00
|
|
|
{
|
2022-05-08 14:41:33 -04:00
|
|
|
"vultr": {
|
|
|
|
"TYPE": "VULTR",
|
2017-10-12 09:21:36 -04:00
|
|
|
"token": "your-vultr-personal-access-token"
|
|
|
|
}
|
|
|
|
}
|
2022-02-17 18:22:31 +01:00
|
|
|
```
|
2017-10-12 09:21:36 -04:00
|
|
|
|
|
|
|
## Metadata
|
|
|
|
|
|
|
|
This provider does not recognize any special metadata fields unique to Vultr.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2022-05-08 14:41:33 -04:00
|
|
|
An example `dnsconfig.js` configuration:
|
2017-10-12 09:21:36 -04:00
|
|
|
|
2023-01-20 13:56:20 +01:00
|
|
|
```javascript
|
2022-05-08 14:41:33 -04:00
|
|
|
var DSP_VULTR = NewDnsProvider("vultr");
|
2017-10-12 09:21:36 -04:00
|
|
|
|
2022-05-08 14:41:33 -04:00
|
|
|
D("example.tld", REG_DNSIMPLE, DnsProvider(DSP_VULTR),
|
|
|
|
A("test", "1.2.3.4")
|
2017-10-12 09:21:36 -04:00
|
|
|
);
|
2022-02-17 18:22:31 +01:00
|
|
|
```
|
2017-10-12 09:21:36 -04:00
|
|
|
|
|
|
|
## Activation
|
|
|
|
|
|
|
|
Vultr depends on a Vultr personal access token.
|