forked from TrueCloudLab/lego
Add DNS provider for RcodeZero (#1947)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
This commit is contained in:
parent
9d193056f7
commit
2d4dc8fb38
13 changed files with 633 additions and 9 deletions
|
@ -102,6 +102,7 @@ func allDNSCodes() string {
|
|||
"plesk",
|
||||
"porkbun",
|
||||
"rackspace",
|
||||
"rcodezero",
|
||||
"regru",
|
||||
"rfc2136",
|
||||
"rimuhosting",
|
||||
|
@ -2001,6 +2002,26 @@ func displayDNSHelp(w io.Writer, name string) error {
|
|||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/rackspace`)
|
||||
|
||||
case "rcodezero":
|
||||
// generated from: providers/dns/rcodezero/rcodezero.toml
|
||||
ew.writeln(`Configuration for RcodeZero.`)
|
||||
ew.writeln(`Code: 'rcodezero'`)
|
||||
ew.writeln(`Since: 'v4.13'`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Credentials:`)
|
||||
ew.writeln(` - "RCODEZERO_API_TOKEN": API token`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Additional Configuration:`)
|
||||
ew.writeln(` - "RCODEZERO_HTTP_TIMEOUT": API request timeout`)
|
||||
ew.writeln(` - "RCODEZERO_POLLING_INTERVAL": Time between DNS propagation check`)
|
||||
ew.writeln(` - "RCODEZERO_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`)
|
||||
ew.writeln(` - "RCODEZERO_TTL": The TTL of the TXT record used for the DNS challenge`)
|
||||
|
||||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/rcodezero`)
|
||||
|
||||
case "regru":
|
||||
// generated from: providers/dns/regru/regru.toml
|
||||
ew.writeln(`Configuration for reg.ru.`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue