mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Add DNS provider for Binary Lane (#2624)
This commit is contained in:
parent
8a11af149f
commit
50a24ced37
14 changed files with 737 additions and 38 deletions
21
cmd/zz_gen_cmd_dnshelp.go
generated
21
cmd/zz_gen_cmd_dnshelp.go
generated
|
|
@ -25,6 +25,7 @@ func allDNSCodes() string {
|
|||
"azure",
|
||||
"azuredns",
|
||||
"baiducloud",
|
||||
"binarylane",
|
||||
"bindman",
|
||||
"bluecat",
|
||||
"bookmyname",
|
||||
|
|
@ -448,6 +449,26 @@ func displayDNSHelp(w io.Writer, name string) error {
|
|||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/baiducloud`)
|
||||
|
||||
case "binarylane":
|
||||
// generated from: providers/dns/binarylane/binarylane.toml
|
||||
ew.writeln(`Configuration for Binary Lane.`)
|
||||
ew.writeln(`Code: 'binarylane'`)
|
||||
ew.writeln(`Since: 'v4.26.0'`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Credentials:`)
|
||||
ew.writeln(` - "BINARYLANE_API_TOKEN": API token`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Additional Configuration:`)
|
||||
ew.writeln(` - "BINARYLANE_HTTP_TIMEOUT": API request timeout in seconds (Default: 30)`)
|
||||
ew.writeln(` - "BINARYLANE_POLLING_INTERVAL": Time between DNS propagation check in seconds (Default: 2)`)
|
||||
ew.writeln(` - "BINARYLANE_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation in seconds (Default: 60)`)
|
||||
ew.writeln(` - "BINARYLANE_TTL": The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)`)
|
||||
|
||||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/binarylane`)
|
||||
|
||||
case "bindman":
|
||||
// generated from: providers/dns/bindman/bindman.toml
|
||||
ew.writeln(`Configuration for Bindman.`)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue