mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-08 06:04:24 +08:00
1.2 KiB
1.2 KiB
Configuration
To use this provider, add an entry to creds.json
with TYPE
set to PORKBUN
along with your api_key
and secret_key
. More info about authentication can be found in Getting started with the Porkbun API.
Example:
{% code title="creds.json" %}
{
"porkbun": {
"TYPE": "PORKBUN",
"api_key": "your-porkbun-api-key",
"secret_key": "your-porkbun-secret-key",
}
}
{% endcode %}
Metadata
This provider does not recognize any special metadata fields unique to Porkbun.
Usage
An example configuration: (DNS hosted with Porkbun):
{% code title="dnsconfig.js" %}
var REG_PORKBUN = NewRegistrar("porkbun");
var DSP_PORKBUN = NewDnsProvider("porkbun");
D("example.com", REG_PORKBUN, DnsProvider(DSP_PORKBUN),
A("test", "1.2.3.4"),
);
{% endcode %}
An example configuration: (Registrar only. DNS hosted elsewhere)
{% code title="dnsconfig.js" %}
var REG_PORKBUN = NewRegistrar("porkbun");
var DSP_R53 = NewDnsProvider("r53");
D("example.com", REG_PORKBUN, DnsProvider(DSP_R53),
A("test", "1.2.3.4"),
);
{% endcode %}