From 67d39182cef2c55b4266c9c1e6af92a3620edc45 Mon Sep 17 00:00:00 2001 From: Peter Truman Date: Wed, 2 Jun 2021 15:12:35 +0100 Subject: [PATCH] mythicbeasts: typo in documentation (#1420) --- cmd/zz_gen_cmd_dnshelp.go | 2 +- docs/content/dns/zz_gen_mythicbeasts.md | 2 +- providers/dns/mythicbeasts/mythicbeasts.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/zz_gen_cmd_dnshelp.go b/cmd/zz_gen_cmd_dnshelp.go index fa9a71a3..2918cca2 100644 --- a/cmd/zz_gen_cmd_dnshelp.go +++ b/cmd/zz_gen_cmd_dnshelp.go @@ -1246,11 +1246,11 @@ func displayDNSHelp(name string) error { ew.writeln(`Additional Configuration:`) ew.writeln(` - "MYTHICBEASTS_API_ENDPOINT": The endpoint for the API (must implement v2)`) + ew.writeln(` - "MYTHICBEASTS_AUTH_API_ENDPOINT": The endpoint for Mythic Beasts' Authentication`) ew.writeln(` - "MYTHICBEASTS_HTTP_TIMEOUT": API request timeout`) ew.writeln(` - "MYTHICBEASTS_POLLING_INTERVAL": Time between DNS propagation check`) ew.writeln(` - "MYTHICBEASTS_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`) ew.writeln(` - "MYTHICBEASTS_TTL": The TTL of the TXT record used for the DNS challenge`) - ew.writeln(` - "MYTHICBEASYS_AUTH_API_ENDPOINT": The endpoint for Mythic Beasts' Authentication`) ew.writeln() ew.writeln(`More information: https://go-acme.github.io/lego/dns/mythicbeasts`) diff --git a/docs/content/dns/zz_gen_mythicbeasts.md b/docs/content/dns/zz_gen_mythicbeasts.md index 09995610..99c47a1a 100644 --- a/docs/content/dns/zz_gen_mythicbeasts.md +++ b/docs/content/dns/zz_gen_mythicbeasts.md @@ -45,11 +45,11 @@ More information [here](/lego/dns/#configuration-and-credentials). | Environment Variable Name | Description | |--------------------------------|-------------| | `MYTHICBEASTS_API_ENDPOINT` | The endpoint for the API (must implement v2) | +| `MYTHICBEASTS_AUTH_API_ENDPOINT` | The endpoint for Mythic Beasts' Authentication | | `MYTHICBEASTS_HTTP_TIMEOUT` | API request timeout | | `MYTHICBEASTS_POLLING_INTERVAL` | Time between DNS propagation check | | `MYTHICBEASTS_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation | | `MYTHICBEASTS_TTL` | The TTL of the TXT record used for the DNS challenge | -| `MYTHICBEASYS_AUTH_API_ENDPOINT` | The endpoint for Mythic Beasts' Authentication | The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. More information [here](/lego/dns/#configuration-and-credentials). diff --git a/providers/dns/mythicbeasts/mythicbeasts.toml b/providers/dns/mythicbeasts/mythicbeasts.toml index 397c20db..765abda3 100644 --- a/providers/dns/mythicbeasts/mythicbeasts.toml +++ b/providers/dns/mythicbeasts/mythicbeasts.toml @@ -22,7 +22,7 @@ Your API key name is not needed to operate lego. MYTHICBEASTS_PASSWORD = "Password" [Configuration.Additional] MYTHICBEASTS_API_ENDPOINT = "The endpoint for the API (must implement v2)" - MYTHICBEASYS_AUTH_API_ENDPOINT = "The endpoint for Mythic Beasts' Authentication" + MYTHICBEASTS_AUTH_API_ENDPOINT = "The endpoint for Mythic Beasts' Authentication" MYTHICBEASTS_POLLING_INTERVAL = "Time between DNS propagation check" MYTHICBEASTS_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation" MYTHICBEASTS_TTL = "The TTL of the TXT record used for the DNS challenge"