infoblox.toml 1.5 KB

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