dnscontrol/documentation/provider/exoscale.md
2024-12-17 07:46:37 -05:00

19 lines
407 B
Markdown

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