mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
21 lines
483 B
Go
21 lines
483 B
Go
package dnsproviders
|
|
|
|
// Note: https://github.com/acmesh-official/acme.sh/wiki/dnsapi#14-use-linode-domain-api
|
|
// needs 15 minute sleep, not currently implemented
|
|
func getDNSLinodeV4() Provider {
|
|
return Provider{
|
|
AcmeshName: "dns_linode_v4",
|
|
Schema: commonKeySchema,
|
|
Fields: []providerField{
|
|
{
|
|
Name: "API Key",
|
|
Type: "text",
|
|
MetaKey: "api_key",
|
|
EnvKey: "LINODE_V4_API_KEY",
|
|
IsRequired: true,
|
|
IsSecret: true,
|
|
},
|
|
},
|
|
}
|
|
}
|