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

21 lines
385 B
Go
Raw Permalink Normal View History

2022-06-01 08:14:16 +00:00
package dnsproviders
func getDNSDNZilore() Provider {
return Provider{
Title: "dns_zilore",
2023-01-13 00:09:26 +00:00
Type: "object",
AdditionalProperties: false,
Required: []string{
"Zilore_Key",
},
Properties: map[string]providerField{
"Zilore_Key": {
Title: "api-key",
Type: "string",
MinLength: 1,
IsSecret: true,
2022-06-01 08:14:16 +00:00
},
},
}
}