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

DOCS: Code examples missing provider constants (#2384)

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
Jeffrey Cafferata
2023-05-21 19:31:35 +02:00
committed by GitHub
parent 4d360d4bda
commit 89b9f1b641
7 changed files with 19 additions and 7 deletions

View File

@ -198,6 +198,9 @@ var FASTMAIL_DKIM = function(the_domain){
We can then use the macros as such:
{% code title="dnsconfig.js" %}
```javascript
var REG_NONE = NewRegistrar("none");
var DSP_R53_MAIN = NewDnsProvider("r53_main");
D("example.com", REG_NONE, DnsProvider(DSP_R53_MAIN),
FASTMAIL_MX,
FASTMAIL_DKIM("example.com")