mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
5d3bc0fabd
- updated chakra and typescript - added locales for dns provider configs
27 lines
519 B
Go
27 lines
519 B
Go
package dnsproviders
|
|
|
|
func getDNSInfoblox() Provider {
|
|
return Provider{
|
|
Title: "dns_infoblox",
|
|
Type: "object",
|
|
AdditionalProperties: false,
|
|
Required: []string{
|
|
"Infoblox_Creds",
|
|
"Infoblox_Server",
|
|
},
|
|
Properties: map[string]providerField{
|
|
"Infoblox_Creds": {
|
|
Title: "credentials",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
IsSecret: true,
|
|
},
|
|
"Infoblox_Server": {
|
|
Title: "server",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
},
|
|
},
|
|
}
|
|
}
|