DOCS: AUTODNSSEC_* improvements (#2984)

This commit is contained in:
Jeffrey Cafferata 2024-06-03 20:31:47 +02:00 committed by GitHub
parent b3787ab8f7
commit 9dcd8c793a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 10 deletions

View file

@ -247,24 +247,24 @@ declare function AKAMAICDN(name: string, target: string, ...modifiers: RecordMod
declare function ALIAS(name: string, target: string, ...modifiers: RecordModifier[]): DomainModifier;
/**
* AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC. It takes no
* `AUTODNSSEC_OFF` tells the provider to disable AutoDNSSEC. It takes no
* parameters.
*
* See `AUTODNSSEC_ON` for further details.
* See [`AUTODNSSEC_ON`](AUTODNSSEC_ON.md) for further details.
*
* @see https://docs.dnscontrol.org/language-reference/domain-modifiers/autodnssec_off
*/
declare const AUTODNSSEC_OFF: DomainModifier;
/**
* AUTODNSSEC_ON tells the provider to enable AutoDNSSEC.
* `AUTODNSSEC_ON` tells the provider to **enable** AutoDNSSEC.
*
* AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC.
* [`AUTODNSSEC_OFF`](AUTODNSSEC_OFF.md) tells the provider to **disable** AutoDNSSEC.
*
* AutoDNSSEC is a feature where a DNS provider can automatically manage
* DNSSEC for a domain. Not all providers support this.
*
* At this time, AUTODNSSEC_ON takes no parameters. There is no ability
* At this time, `AUTODNSSEC_ON` takes no parameters. There is no ability
* to tune what the DNS provider sets, no algorithm choice. We simply
* ask that they follow their defaults when enabling a no-fuss DNSSEC
* data model.

View file

@ -2,7 +2,7 @@
name: AUTODNSSEC_OFF
---
AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC. It takes no
`AUTODNSSEC_OFF` tells the provider to disable AutoDNSSEC. It takes no
parameters.
See `AUTODNSSEC_ON` for further details.
See [`AUTODNSSEC_ON`](AUTODNSSEC_ON.md) for further details.

View file

@ -2,14 +2,14 @@
name: AUTODNSSEC_ON
---
AUTODNSSEC_ON tells the provider to enable AutoDNSSEC.
`AUTODNSSEC_ON` tells the provider to **enable** AutoDNSSEC.
AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC.
[`AUTODNSSEC_OFF`](AUTODNSSEC_OFF.md) tells the provider to **disable** AutoDNSSEC.
AutoDNSSEC is a feature where a DNS provider can automatically manage
DNSSEC for a domain. Not all providers support this.
At this time, AUTODNSSEC_ON takes no parameters. There is no ability
At this time, `AUTODNSSEC_ON` takes no parameters. There is no ability
to tune what the DNS provider sets, no algorithm choice. We simply
ask that they follow their defaults when enabling a no-fuss DNSSEC
data model.