mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
47 lines
759 B
Go
47 lines
759 B
Go
package dnsproviders
|
|
|
|
const infobloxSchema = `
|
|
{
|
|
"type": "object",
|
|
"required": [
|
|
"credentials",
|
|
"server"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"credentials": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"server": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
func getDNSInfoblox() Provider {
|
|
return Provider{
|
|
AcmeshName: "dns_infoblox",
|
|
Schema: infobloxSchema,
|
|
Fields: []providerField{
|
|
{
|
|
Name: "Credentials",
|
|
Type: "text",
|
|
MetaKey: "credentials",
|
|
EnvKey: "Infoblox_Creds",
|
|
IsRequired: true,
|
|
IsSecret: true,
|
|
},
|
|
{
|
|
Name: "Server",
|
|
Type: "text",
|
|
MetaKey: "server",
|
|
EnvKey: "Infoblox_Server",
|
|
IsRequired: true,
|
|
},
|
|
},
|
|
}
|
|
}
|