This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Infoblox accounts.
dns.providers.infoblox
To use this module for the ACME DNS challenge, configure the ACME issuer in your Caddy JSON like so:
{
"module": "acme",
"challenges": {
"dns": {
"provider": {
"name": "infoblox",
"host": "INFOBLOX_HOST",
"version": "INFOBLOX_VERSION",
"username": "INFOBLOX_USERNAME",
"password": "INFOBLOX_PASSWORD"
}
}
}
}tls {
dns infoblox {
host {env.INFOBLOX_HOST}
version {env.INFOBLOX_VERSION}
username {env.INFOBLOX_USERNAME}
password {env.INFOBLOX_PASSWORD}
}
}