mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Add DNS provider for Alwaysdata (#2770)
This commit is contained in:
parent
ff885d99c2
commit
a6a73754af
14 changed files with 922 additions and 45 deletions
22
cmd/zz_gen_cmd_dnshelp.go
generated
22
cmd/zz_gen_cmd_dnshelp.go
generated
|
|
@ -17,6 +17,7 @@ func allDNSCodes() string {
|
|||
"alidns",
|
||||
"aliesa",
|
||||
"allinkl",
|
||||
"alwaysdata",
|
||||
"anexia",
|
||||
"arvancloud",
|
||||
"auroradns",
|
||||
|
|
@ -306,6 +307,27 @@ func displayDNSHelp(w io.Writer, name string) error {
|
|||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/allinkl`)
|
||||
|
||||
case "alwaysdata":
|
||||
// generated from: providers/dns/alwaysdata/alwaysdata.toml
|
||||
ew.writeln(`Configuration for Alwaysdata.`)
|
||||
ew.writeln(`Code: 'alwaysdata'`)
|
||||
ew.writeln(`Since: 'v4.31.0'`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Credentials:`)
|
||||
ew.writeln(` - "ALWAYSDATA_API_KEY": API Key`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Additional Configuration:`)
|
||||
ew.writeln(` - "ALWAYSDATA_ACCOUNT": Account name`)
|
||||
ew.writeln(` - "ALWAYSDATA_HTTP_TIMEOUT": API request timeout in seconds (Default: 30)`)
|
||||
ew.writeln(` - "ALWAYSDATA_POLLING_INTERVAL": Time between DNS propagation check in seconds (Default: 2)`)
|
||||
ew.writeln(` - "ALWAYSDATA_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation in seconds (Default: 60)`)
|
||||
ew.writeln(` - "ALWAYSDATA_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/alwaysdata`)
|
||||
|
||||
case "anexia":
|
||||
// generated from: providers/dns/anexia/anexia.toml
|
||||
ew.writeln(`Configuration for Anexia CloudDNS.`)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue