mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-05 20:54:22 +08:00
DOCS: Added the missing provider Exoscale
page (#2664)
This commit is contained in:
parent
609de61669
commit
c1f5a8c418
2 changed files with 20 additions and 0 deletions
|
@ -113,6 +113,7 @@
|
|||
* [DNS-over-HTTPS](providers/dnsoverhttps.md)
|
||||
* [DOMAINNAMESHOP](providers/domainnameshop.md)
|
||||
* [easyname](providers/easyname.md)
|
||||
* [Exoscale](providers/exoscale.md)
|
||||
* [Gandi_v5](providers/gandi_v5.md)
|
||||
* [Gcore](providers/gcore.md)
|
||||
* [Google Cloud DNS](providers/gcloud.md)
|
||||
|
|
19
documentation/providers/exoscale.md
Normal file
19
documentation/providers/exoscale.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
## Configuration
|
||||
|
||||
To use this provider, add an entry to `creds.json` with `TYPE` set to `EXOSCALE`
|
||||
along with your Exoscale credentials.
|
||||
|
||||
## Usage
|
||||
|
||||
An example configuration:
|
||||
|
||||
{% code title="dnsconfig.js" %}
|
||||
```javascript
|
||||
var REG_NONE = NewRegistrar("none");
|
||||
var DSP_EXOSCALE = NewDnsProvider("exoscale");
|
||||
|
||||
D("example.com", REG_NONE, DnsProvider(DSP_EXOSCALE),
|
||||
A("test", "1.2.3.4")
|
||||
);
|
||||
```
|
||||
{% endcode %}
|
Loading…
Add table
Reference in a new issue