dns_dreamhost
This commit is contained in:
parent
0a18432860
commit
e31b01b80e
@ -48,6 +48,7 @@ func List() []Provider {
|
||||
getDNSDgon(),
|
||||
getDNSDNSimple(),
|
||||
getDNSDp(),
|
||||
getDNSDreamhost(),
|
||||
getDNSDuckDNS(),
|
||||
getDNSDyn(),
|
||||
getDNSDynu(),
|
||||
|
18
backend/internal/dnsproviders/dns_dreamhost.go
Normal file
18
backend/internal/dnsproviders/dns_dreamhost.go
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
@ -38,6 +38,9 @@
|
||||
"acmesh.dns_dp": {
|
||||
"defaultMessage": "DNSPod.cn"
|
||||
},
|
||||
"acmesh.dns_dreamhost": {
|
||||
"defaultMessage": "DreamHost"
|
||||
},
|
||||
"acmesh.dns_duckdns": {
|
||||
"defaultMessage": "DuckDNS"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user