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