Add DNS provider for RcodeZero (#1947)

Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
This commit is contained in:
Michael Braunöder 2023-07-01 00:51:17 +02:00 committed by GitHub
parent 9d193056f7
commit 2d4dc8fb38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 633 additions and 9 deletions

View file

@ -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.`)