nginx-proxy-manager/backend/internal/dnsproviders/dns_dreamhost.go

19 lines
340 B
Go
Raw Normal View History

2022-06-01 05:22:40 +00:00
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,
},
},
}
}