github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/provider/exoscale.md (about) 1 ## Configuration 2 3 To use this provider, add an entry to `creds.json` with `TYPE` set to `EXOSCALE` 4 along with your Exoscale credentials. 5 6 ## Usage 7 8 An example configuration: 9 10 {% code title="dnsconfig.js" %} 11 ```javascript 12 var REG_NONE = NewRegistrar("none"); 13 var DSP_EXOSCALE = NewDnsProvider("exoscale"); 14 15 D("example.com", REG_NONE, DnsProvider(DSP_EXOSCALE), 16 A("test", "1.2.3.4"), 17 END); 18 ``` 19 {% endcode %}