Comment on page
Gcore
To use this provider, add an entry to
creds.json
with TYPE
set to GCORE
along with a Gcore account API token.Example:
creds.json
{
"gcore": {
"TYPE": "GCORE",
"api-key": "your-gcore-api-key"
}
}
This provider does not recognize any special metadata fields unique to Gcore.
An example configuration:
dnsconfig.js
var REG_NONE = NewRegistrar("none");
var DSP_GCORE = NewDnsProvider("gcore");
D("example.com", REG_NONE, DnsProvider(DSP_GCORE),
A("test", "1.2.3.4")
);
DNSControl depends on a Gcore account API token.
Last modified 5mo ago