mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-16 20:39:08 +08:00
05be3b83ed
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
678 B
678 B
Configuration
To use this provider, add an entry to creds.json
with TYPE
set to VULTR
along with a Vultr personal access token.
Example:
{% code title="creds.json" %}
{
"vultr": {
"TYPE": "VULTR",
"token": "your-vultr-personal-access-token"
}
}
{% endcode %}
Metadata
This provider does not recognize any special metadata fields unique to Vultr.
Usage
An example configuration:
{% code title="dnsconfig.js" %}
var DSP_VULTR = NewDnsProvider("vultr");
D("example.tld", REG_DNSIMPLE, DnsProvider(DSP_VULTR),
A("test", "1.2.3.4")
);
{% endcode %}
Activation
Vultr depends on a Vultr personal access token.