github.com/StackExchange/dnscontrol/v4@v4.11.0/documentation/language-reference/domain-modifiers/AUTODNSSEC_ON.md (about)

     1  ---
     2  name: AUTODNSSEC_ON
     3  ---
     4  
     5  AUTODNSSEC_ON tells the provider to enable AutoDNSSEC.
     6  
     7  AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC.
     8  
     9  AutoDNSSEC is a feature where a DNS provider can automatically manage
    10  DNSSEC for a domain. Not all providers support this.
    11  
    12  At this time, AUTODNSSEC_ON takes no parameters.  There is no ability
    13  to tune what the DNS provider sets, no algorithm choice.  We simply
    14  ask that they follow their defaults when enabling a no-fuss DNSSEC
    15  data model.
    16  
    17  {% hint style="info" %}
    18  **NOTE**: No parenthesis should follow these keywords.  That is, the
    19  correct syntax is `AUTODNSSEC_ON` not `AUTODNSSEC_ON()`
    20  {% endhint %}
    21  
    22  {% code title="dnsconfig.js" %}
    23  ```javascript
    24  D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
    25    AUTODNSSEC_ON,  // Enable AutoDNSSEC.
    26    A("@", "10.1.1.1"),
    27  END);
    28  
    29  D("insecure.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
    30    AUTODNSSEC_OFF,  // Disable AutoDNSSEC.
    31    A("@", "10.2.2.2"),
    32  END);
    33  ```
    34  {% endcode %}
    35  
    36  If neither `AUTODNSSEC_ON` or `AUTODNSSEC_OFF` is specified for a
    37  domain no changes will be requested.