dnscontrol/docs/_providers/vultr.md
Patrick G 23427516c0 Added Vultr provider (#217) (#219)
* 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
2017-10-12 09:21:36 -04:00

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.