Skip to content

Commit

Permalink
doc: fix viewname -> optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Jun 30, 2023
1 parent 4d855f9 commit 503d749
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/zz_gen_cmd_dnshelp.go
Original file line number Diff line number Diff line change
Expand Up @@ -902,14 +902,14 @@ 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:`)
ew.writeln(` - "EFFICIENTIP_HTTP_TIMEOUT": API request timeout`)
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`)
Expand Down
2 changes: 1 addition & 1 deletion docs/content/dns/zz_gen_efficientip.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ lego --email [email protected] --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" >}}).
Expand All @@ -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" >}}).
Expand Down
2 changes: 1 addition & 1 deletion providers/dns/efficientip/efficientip.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ lego --email [email protected] --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"
Expand Down

0 comments on commit 503d749

Please sign in to comment.