Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

domeneshop: fix documentation #1390

Merged
merged 1 commit into from
Apr 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/zz_gen_cmd_dnshelp.go
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ func displayDNSHelp(name string) error {
ew.writeln()

ew.writeln(`Credentials:`)
ew.writeln(` - "DOMENESHOP_API_PASSWORD": API secret`)
ew.writeln(` - "DOMENESHOP_API_SECRET": API secret`)
ew.writeln(` - "DOMENESHOP_API_TOKEN": API token`)
ew.writeln()

Expand Down
2 changes: 1 addition & 1 deletion docs/content/dns/zz_gen_domeneshop.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lego --email example@example.com --dns domeneshop --domains example.com run

| Environment Variable Name | Description |
|-----------------------|-------------|
| `DOMENESHOP_API_PASSWORD` | API secret |
| `DOMENESHOP_API_SECRET` | API secret |
| `DOMENESHOP_API_TOKEN` | API token |

The environment variable names can be suffixed by `_FILE` to reference a file instead of a value.
Expand Down
2 changes: 1 addition & 1 deletion providers/dns/domeneshop/domeneshop.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Visit the following page for information on how to create API credentials with D
[Configuration]
[Configuration.Credentials]
DOMENESHOP_API_TOKEN = "API token"
DOMENESHOP_API_PASSWORD = "API secret"
DOMENESHOP_API_SECRET = "API secret"
[Configuration.Additional]
DOMENESHOP_POLLING_INTERVAL = "Time between DNS propagation check"
DOMENESHOP_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
Expand Down