DOCS: Added the missing provider Exoscale page (#2664)

This commit is contained in:
Jeffrey Cafferata 2023-12-04 16:30:30 +01:00 committed by GitHub
parent 609de61669
commit c1f5a8c418
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -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)

View 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 %}