mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
19 lines
330 B
Go
19 lines
330 B
Go
|
package dnsproviders
|
||
|
|
||
|
func getDNSDgon() Provider {
|
||
|
return Provider{
|
||
|
AcmeshName: "dns_dgon",
|
||
|
Schema: commonKeySchema,
|
||
|
Fields: []providerField{
|
||
|
{
|
||
|
Name: "API Key",
|
||
|
Type: "password",
|
||
|
MetaKey: "api_key",
|
||
|
EnvKey: "DO_API_KEY",
|
||
|
IsRequired: true,
|
||
|
IsSecret: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|