mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-15 12:45:14 +08:00
23427516c0
* Added Vultr provider * Fixed tests * Fixed CI build validation * Add unsupported features * Added #rtype_variations tags according to stackexchange.github.io/dnscontrol/adding-new-rtypes * Add title (for compatibility with #223) * Removed extra rtype_variations
39 lines
649 B
Markdown
39 lines
649 B
Markdown
---
|
|
name: Vultr
|
|
title: Vultr Provider
|
|
layout: default
|
|
jsId: VULTR
|
|
---
|
|
# Vultr Provider
|
|
|
|
## Configuration
|
|
|
|
In your providers config json file you must include a Vultr personal access token:
|
|
|
|
{% highlight json %}
|
|
{
|
|
"vultr":{
|
|
"token": "your-vultr-personal-access-token"
|
|
}
|
|
}
|
|
{% endhighlight %}
|
|
|
|
## Metadata
|
|
|
|
This provider does not recognize any special metadata fields unique to Vultr.
|
|
|
|
## Usage
|
|
|
|
Example javascript:
|
|
|
|
{% highlight js %}
|
|
var VULTR = NewDnsProvider("vultr", "VULTR");
|
|
|
|
D("example.tld", REG_DNSIMPLE, DnsProvider(VULTR),
|
|
A("test","1.2.3.4")
|
|
);
|
|
{% endhighlight %}
|
|
|
|
## Activation
|
|
|
|
Vultr depends on a Vultr personal access token.
|