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

43 lines
631 B
Go
Raw Normal View History

2022-06-01 08:09:35 +00:00
package dnsproviders
const daSchema = `
{
"type": "object",
"required": [
"api_url"
],
"additionalProperties": false,
"properties": {
"api_url": {
"type": "string",
"minLength": 4
},
"insecure": {
"type": "boolean"
}
}
}
`
func getDNSDa() Provider {
return Provider{
AcmeshName: "dns_da",
Schema: daSchema,
Fields: []providerField{
{
Name: "API URL",
Type: "text",
MetaKey: "api_url",
EnvKey: "DA_Api",
IsRequired: true,
},
{
Name: "Insecure",
Type: "bool",
2022-06-01 08:09:35 +00:00
MetaKey: "insecure",
EnvKey: "DA_Api_Insecure",
},
},
}
}