Skip to content

Commit 02a48a4

Browse files
committed
doc: fix viewname -> optional
1 parent b4d2ffc commit 02a48a4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/zz_gen_cmd_dnshelp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,14 +901,14 @@ func displayDNSHelp(w io.Writer, name string) error {
901901
ew.writeln(` - "EFFICIENTIP_HOSTNAME": Hostname (ex: foo.example.com)`)
902902
ew.writeln(` - "EFFICIENTIP_PASSWORD": Password`)
903903
ew.writeln(` - "EFFICIENTIP_USERNAME": Username`)
904-
ew.writeln(` - "EFFICIENTIP_VIEW_NAME": View name (ex: external)`)
905904
ew.writeln()
906905

907906
ew.writeln(`Additional Configuration:`)
908907
ew.writeln(` - "EFFICIENTIP_HTTP_TIMEOUT": API request timeout`)
909908
ew.writeln(` - "EFFICIENTIP_POLLING_INTERVAL": Time between DNS propagation check`)
910909
ew.writeln(` - "EFFICIENTIP_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`)
911910
ew.writeln(` - "EFFICIENTIP_TTL": The TTL of the TXT record used for the DNS challenge`)
911+
ew.writeln(` - "EFFICIENTIP_VIEW_NAME": View name (ex: external)`)
912912

913913
ew.writeln()
914914
ew.writeln(`More information: https://go-acme.github.io/lego/dns/efficientip`)

docs/content/dns/zz_gen_efficientip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ lego --email [email protected] --dns efficientip --domains my.example.org run
4444
| `EFFICIENTIP_HOSTNAME` | Hostname (ex: foo.example.com) |
4545
| `EFFICIENTIP_PASSWORD` | Password |
4646
| `EFFICIENTIP_USERNAME` | Username |
47-
| `EFFICIENTIP_VIEW_NAME` | View name (ex: external) |
4847

4948
The environment variable names can be suffixed by `_FILE` to reference a file instead of a value.
5049
More information [here]({{< ref "dns#configuration-and-credentials" >}}).
@@ -58,6 +57,7 @@ More information [here]({{< ref "dns#configuration-and-credentials" >}}).
5857
| `EFFICIENTIP_POLLING_INTERVAL` | Time between DNS propagation check |
5958
| `EFFICIENTIP_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation |
6059
| `EFFICIENTIP_TTL` | The TTL of the TXT record used for the DNS challenge |
60+
| `EFFICIENTIP_VIEW_NAME` | View name (ex: external) |
6161

6262
The environment variable names can be suffixed by `_FILE` to reference a file instead of a value.
6363
More information [here]({{< ref "dns#configuration-and-credentials" >}}).

providers/dns/efficientip/efficientip.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ lego --email [email protected] --dns efficientip --domains my.example.org run
1818
EFFICIENTIP_PASSWORD = "Password"
1919
EFFICIENTIP_HOSTNAME = "Hostname (ex: foo.example.com)"
2020
EFFICIENTIP_DNS_NAME = "DNS name (ex: dns.smart)"
21-
EFFICIENTIP_VIEW_NAME = "View name (ex: external)"
2221
[Configuration.Additional]
22+
EFFICIENTIP_VIEW_NAME = "View name (ex: external)"
2323
EFFICIENTIP_POLLING_INTERVAL = "Time between DNS propagation check"
2424
EFFICIENTIP_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
2525
EFFICIENTIP_TTL = "The TTL of the TXT record used for the DNS challenge"

0 commit comments

Comments
 (0)