1 Name = "Infoblox"
2 Description = ''''''
3 URL = "https://www.infoblox.com/"
4 Code = "infoblox"
5 Since = "v4.4.0"
6 7 Example = '''
8 INFOBLOX_USERNAME=api-user-529 \
9 INFOBLOX_PASSWORD=b9841238feb177a84330febba8a83208921177bffe733 \
10 INFOBLOX_HOST=infoblox.example.org
11 lego --dns infoblox -d '*.example.com' -d example.com run
12 '''
13 14 Additional = '''
15 When creating an API's user ensure it has the proper permissions for the view you are working with.
16 '''
17 18 [Configuration]
19 [Configuration.Credentials]
20 INFOBLOX_USERNAME = "Account Username"
21 INFOBLOX_PASSWORD = "Account Password"
22 INFOBLOX_HOST = "Host URI"
23 [Configuration.Additional]
24 INFOBLOX_DNS_VIEW = "The view for the TXT records (Default: External)"
25 INFOBLOX_WAPI_VERSION = "The version of WAPI being used (Default: 2.11)"
26 INFOBLOX_PORT = "The port for the infoblox grid manager (Default: 443)"
27 INFOBLOX_SSL_VERIFY = "Whether or not to verify the TLS certificate (Default: true)"
28 INFOBLOX_CA_CERTIFICATE = "The path to the CA certificate (PEM encoded)"
29 INFOBLOX_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
30 INFOBLOX_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
31 INFOBLOX_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
32 INFOBLOX_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
33 34 35 [Links]
36 API = "https://your.infoblox.server/wapidoc/"
37 GoClient = "https://github.com/infobloxopen/infoblox-go-client"
38