diff --git a/cmd/zz_gen_cmd_dnshelp.go b/cmd/zz_gen_cmd_dnshelp.go index 117b10ffa..6516a78ee 100644 --- a/cmd/zz_gen_cmd_dnshelp.go +++ b/cmd/zz_gen_cmd_dnshelp.go @@ -2778,10 +2778,10 @@ func displayDNSHelp(w io.Writer, name string) error { ew.writeln() ew.writeln(`Additional Configuration:`) - ew.writeln(` - "DODE_SEQUENCE_INTERVAL": Time between sequential requests`) ew.writeln(` - "VARIOMEDIA_HTTP_TIMEOUT": API request timeout`) ew.writeln(` - "VARIOMEDIA_POLLING_INTERVAL": Time between DNS propagation check`) ew.writeln(` - "VARIOMEDIA_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`) + ew.writeln(` - "VARIOMEDIA_SEQUENCE_INTERVAL": Time between sequential requests`) ew.writeln(` - "VARIOMEDIA_TTL": The TTL of the TXT record used for the DNS challenge`) ew.writeln() diff --git a/docs/content/dns/zz_gen_variomedia.md b/docs/content/dns/zz_gen_variomedia.md index edb53ab67..93e6b2909 100644 --- a/docs/content/dns/zz_gen_variomedia.md +++ b/docs/content/dns/zz_gen_variomedia.md @@ -47,10 +47,10 @@ More information [here]({{% ref "dns#configuration-and-credentials" %}}). | Environment Variable Name | Description | |--------------------------------|-------------| -| `DODE_SEQUENCE_INTERVAL` | Time between sequential requests | | `VARIOMEDIA_HTTP_TIMEOUT` | API request timeout | | `VARIOMEDIA_POLLING_INTERVAL` | Time between DNS propagation check | | `VARIOMEDIA_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation | +| `VARIOMEDIA_SEQUENCE_INTERVAL` | Time between sequential requests | | `VARIOMEDIA_TTL` | The TTL of the TXT record used for the DNS challenge | The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. diff --git a/providers/dns/variomedia/variomedia.toml b/providers/dns/variomedia/variomedia.toml index a75918954..ac3a6674a 100644 --- a/providers/dns/variomedia/variomedia.toml +++ b/providers/dns/variomedia/variomedia.toml @@ -11,14 +11,13 @@ lego --email you@example.com --dns variomedia --domains my.example.org run [Configuration] [Configuration.Credentials] - VARIOMEDIA_API_TOKEN = "API token" + VARIOMEDIA_API_TOKEN = "API token" [Configuration.Additional] VARIOMEDIA_POLLING_INTERVAL = "Time between DNS propagation check" VARIOMEDIA_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation" VARIOMEDIA_TTL = "The TTL of the TXT record used for the DNS challenge" - DODE_SEQUENCE_INTERVAL = "Time between sequential requests" + VARIOMEDIA_SEQUENCE_INTERVAL = "Time between sequential requests" VARIOMEDIA_HTTP_TIMEOUT = "API request timeout" [Links] API = "https://api.variomedia.de/docs/dns-records.html" -