dnscontrol/docs/_providers/gandi.md

44 lines
776 B
Markdown
Raw Normal View History

---
name: Gandi
title: Gandi Provider
layout: default
jsId: GANDI
---
# Gandi Provider
2017-05-10 21:19:11 +08:00
Gandi provides a DnsProvider but not a Registrar.
## Configuration
In your providers config json file you must provide your Gandi.net api key:
{% highlight json %}
{
"gandi": {
"apikey": "your-gandi-key"
}
}
{% endhighlight %}
## Metadata
2017-05-10 21:19:11 +08:00
This provider does not recognize any special metadata fields unique to Gandi.
## Usage
Example javascript:
{% highlight js %}
var GANDI = NewDnsProvider("gandi", "GANDI");
2017-05-10 21:19:11 +08:00
D("example.tld", REG_GANDI, DnsProvider(GANDI),
A("test","1.2.3.4")
);
{% endhighlight %}
## New domains
If a domain does not exist in your Gandi account, DNSControl
will *not* automatically add it. You'll need to do that via the
control panel manually.