dns_namesilo
This commit is contained in:
@ -60,6 +60,7 @@ func List() []Provider {
|
||||
getDNSLua(),
|
||||
getDNSMe(),
|
||||
getDNSNamecom(),
|
||||
getDNSNamesilo(),
|
||||
getDNSServercow(),
|
||||
getDNSOne(),
|
||||
getDNSPDNS(),
|
||||
|
18
backend/internal/dnsproviders/dns_namesilo.go
Normal file
18
backend/internal/dnsproviders/dns_namesilo.go
Normal file
@ -0,0 +1,18 @@
|
||||
package dnsproviders
|
||||
|
||||
func getDNSNamesilo() Provider {
|
||||
return Provider{
|
||||
AcmeshName: "dns_namesilo",
|
||||
Schema: commonKeySchema,
|
||||
Fields: []providerField{
|
||||
{
|
||||
Name: "API Key",
|
||||
Type: "password",
|
||||
MetaKey: "api_key",
|
||||
EnvKey: "Namesilo_Key",
|
||||
IsRequired: true,
|
||||
IsSecret: true,
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user