github.com/pmoroney/dnscontrol@v0.2.4-0.20171024134423-fad98f73f44a/docs/_providers/gandi.md (about)

     1  ---
     2  name: Gandi
     3  title: Gandi Provider
     4  layout: default
     5  jsId: GANDI
     6  ---
     7  # Gandi Provider
     8  
     9  ## Configuration
    10  In your credentials file you must provide your Gandi.net API key:
    11  
    12  {% highlight json %}
    13  {
    14    "gandi": {
    15      "apikey": "your-gandi-key"
    16    }
    17  }
    18  {% endhighlight %}
    19  
    20  ## Metadata
    21  This provider does not recognize any special metadata fields unique to Gandi.
    22  
    23  ## Usage
    24  Example Javascript:
    25  
    26  {% highlight js %}
    27  var GANDI = NewDnsProvider("gandi", "GANDI");
    28  
    29  D("example.tld", REG_GANDI, DnsProvider(GANDI),
    30      A("test","1.2.3.4")
    31  );
    32  {% endhighlight %}
    33  
    34  ## New domains
    35  If a domain does not exist in your Gandi account, DNSControl will *not* automatically add it with the `create-domains` command. You'll need to do that via the control panel manually.