1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
2024-04-18 09:43:50 -04:00

20 lines
406 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 %}