le-cert-server
GitHub

Infoblox

Configuration for the Infoblox DNS provider.

See the lego documentation for full details.

letsEncrypt:
  dnsProvider: "infoblox"
  dnsCredentials:
    # INFOBLOX_HOST: Host URI
    host: ""
    # INFOBLOX_PASSWORD: Account Password
    password: ""
    # INFOBLOX_USERNAME: Account Username
    username: ""
    # INFOBLOX_CA_CERTIFICATE: The path to the CA certificate (PEM encoded)
    caCertificate: ""
    # INFOBLOX_DNS_VIEW: The view for the TXT records (Default: External)
    dnsView: ""
    # INFOBLOX_HTTP_TIMEOUT: API request timeout in seconds (Default: 30)
    httpTimeout: ""
    # INFOBLOX_POLLING_INTERVAL: Time between DNS propagation check in seconds (Default: 2)
    pollingInterval: ""
    # INFOBLOX_PORT: The port for the infoblox grid manager (Default: 443)
    port: ""
    # INFOBLOX_PROPAGATION_TIMEOUT: Maximum waiting time for DNS propagation in seconds (Default: 60)
    propagationTimeout: ""
    # INFOBLOX_SSL_VERIFY: Whether or not to verify the TLS certificate (Default: true)
    sslVerify: ""
    # INFOBLOX_TTL: The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)
    ttl: ""
    # INFOBLOX_WAPI_VERSION: The version of WAPI being used (Default: 2.11)
    wapiVersion: ""

Credentials are passed directly to lego using strong types and are never written to the process environment. You may also use the raw lego environment-variable names as keys instead of the normalized names.

Edit this page on GitHub