nginx-proxy-manager-zh/backend/internal/dnsproviders/dns_zilore.go

19 lines
332 B
Go
Raw Normal View History

2022-06-01 04:14:16 -04:00
package dnsproviders
func getDNSDNZilore() Provider {
return Provider{
AcmeshName: "dns_zilore",
Schema: commonKeySchema,
Fields: []providerField{
{
Name: "API Key",
Type: "text",
MetaKey: "api_key",
EnvKey: "Zilore_Key",
IsRequired: true,
IsSecret: true,
},
},
}
}