dnscontrol/documentation/providers/domainnameshop.md
Jeffrey Cafferata 7977a7b81c
DOCS: Improve consistency in code examples in language reference (#2439)
Co-authored-by: Tom Limoncelli <tal@whatexit.org>
2023-06-17 08:58:17 -04:00

972 B

Configuration

To use this provider, add an entry to creds.json with TYPE set to DOMAINNAMESHOP along with your Domainnameshop Token and Secret.

Example:

{% code title="creds.json" %}

{
  "mydomainnameshop": {
    "TYPE": "DOMAINNAMESHOP",
    "token": "your-domainnameshop-token",
    "secret": "your-domainnameshop-secret"
  }
}

{% endcode %}

Metadata

This provider does not recognize any special metadata fields unique to Domainnameshop.

Usage

An example configuration:

{% code title="dnsconfig.js" %}

var REG_NONE = NewRegistrar("none");
var DSP_DOMAINNAMESHOP = NewDnsProvider("mydomainnameshop");

D("example.com", REG_NONE, DnsProvider(DSP_DOMAINNAMESHOP),
    A("test", "1.2.3.4")
);

{% endcode %}

Activation

Create API Token and secret

Limitations

  • Domainnameshop DNS only supports TTLs which are a multiple of 60.