dns_dreamhost

This commit is contained in:
Jamie Curnow 2022-06-01 09:22:40 +04:00
parent 0a18432860
commit e31b01b80e
3 changed files with 22 additions and 0 deletions

View File

@ -48,6 +48,7 @@ func List() []Provider {
getDNSDgon(),
getDNSDNSimple(),
getDNSDp(),
getDNSDreamhost(),
getDNSDuckDNS(),
getDNSDyn(),
getDNSDynu(),

View File

@ -0,0 +1,18 @@
package dnsproviders
func getDNSDreamhost() Provider {
return Provider{
AcmeshName: "dns_dreamhost",
Schema: commonKeySchema,
Fields: []providerField{
{
Name: "API Key",
Type: "password",
MetaKey: "api_key",
EnvKey: "DH_API_KEY",
IsRequired: true,
IsSecret: true,
},
},
}
}

View File

@ -38,6 +38,9 @@
"acmesh.dns_dp": {
"defaultMessage": "DNSPod.cn"
},
"acmesh.dns_dreamhost": {
"defaultMessage": "DreamHost"
},
"acmesh.dns_duckdns": {
"defaultMessage": "DuckDNS"
},