diff --git a/cmd/zz_gen_cmd_dnshelp.go b/cmd/zz_gen_cmd_dnshelp.go index 882843bc8e6..6c31a029236 100644 --- a/cmd/zz_gen_cmd_dnshelp.go +++ b/cmd/zz_gen_cmd_dnshelp.go @@ -901,7 +901,6 @@ func displayDNSHelp(w io.Writer, name string) error { ew.writeln(` - "EFFICIENTIP_HOSTNAME": Hostname (ex: foo.example.com)`) ew.writeln(` - "EFFICIENTIP_PASSWORD": Password`) ew.writeln(` - "EFFICIENTIP_USERNAME": Username`) - ew.writeln(` - "EFFICIENTIP_VIEW_NAME": View name (ex: external)`) ew.writeln() ew.writeln(`Additional Configuration:`) @@ -909,6 +908,7 @@ func displayDNSHelp(w io.Writer, name string) error { ew.writeln(` - "EFFICIENTIP_POLLING_INTERVAL": Time between DNS propagation check`) ew.writeln(` - "EFFICIENTIP_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`) ew.writeln(` - "EFFICIENTIP_TTL": The TTL of the TXT record used for the DNS challenge`) + ew.writeln(` - "EFFICIENTIP_VIEW_NAME": View name (ex: external)`) ew.writeln() ew.writeln(`More information: https://go-acme.github.io/lego/dns/efficientip`) diff --git a/docs/content/dns/zz_gen_efficientip.md b/docs/content/dns/zz_gen_efficientip.md index f8f7acf208a..129499b5ea5 100644 --- a/docs/content/dns/zz_gen_efficientip.md +++ b/docs/content/dns/zz_gen_efficientip.md @@ -44,7 +44,6 @@ lego --email you@example.com --dns efficientip --domains my.example.org run | `EFFICIENTIP_HOSTNAME` | Hostname (ex: foo.example.com) | | `EFFICIENTIP_PASSWORD` | Password | | `EFFICIENTIP_USERNAME` | Username | -| `EFFICIENTIP_VIEW_NAME` | View name (ex: external) | The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. More information [here]({{< ref "dns#configuration-and-credentials" >}}). @@ -58,6 +57,7 @@ More information [here]({{< ref "dns#configuration-and-credentials" >}}). | `EFFICIENTIP_POLLING_INTERVAL` | Time between DNS propagation check | | `EFFICIENTIP_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation | | `EFFICIENTIP_TTL` | The TTL of the TXT record used for the DNS challenge | +| `EFFICIENTIP_VIEW_NAME` | View name (ex: external) | The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. More information [here]({{< ref "dns#configuration-and-credentials" >}}). diff --git a/providers/dns/efficientip/efficientip.toml b/providers/dns/efficientip/efficientip.toml index 60dedbff7c9..278701e0ff8 100644 --- a/providers/dns/efficientip/efficientip.toml +++ b/providers/dns/efficientip/efficientip.toml @@ -18,8 +18,8 @@ lego --email you@example.com --dns efficientip --domains my.example.org run EFFICIENTIP_PASSWORD = "Password" EFFICIENTIP_HOSTNAME = "Hostname (ex: foo.example.com)" EFFICIENTIP_DNS_NAME = "DNS name (ex: dns.smart)" - EFFICIENTIP_VIEW_NAME = "View name (ex: external)" [Configuration.Additional] + EFFICIENTIP_VIEW_NAME = "View name (ex: external)" EFFICIENTIP_POLLING_INTERVAL = "Time between DNS propagation check" EFFICIENTIP_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation" EFFICIENTIP_TTL = "The TTL of the TXT record used for the DNS challenge"