Support · Requirements · Installation · License · Related Integrations
The LuaDNS Provider plugin enables automated DNS-based domain validation for Keyfactor certificate lifecycle management through LuaDNS. This plugin integrates with the LuaDNS API to automatically create, verify, and delete DNS TXT records required for domain validation during certificate issuance and renewal.
- Automated DNS TXT record creation and deletion in LuaDNS
- HTTP Basic authentication using the account's username (email) and API key
- Automatic zone discovery across all zones on the account, matched by longest domain suffix
- Keyfactor AnyCA Gateway REST 26.2 or later (DNS validation support was added in AnyCA Gateway 26.2)
- A gateway product that supports DNS-01 domain validation (ACME REST Gateway, DigiCert, Sectigo, etc.)
- A LuaDNS account with one or more DNS zones managed by LuaDNS
- A LuaDNS API key (create under Account > API Keys in the LuaDNS dashboard)
- .NET 10.0 runtime (provided by the gateway server)
- Network connectivity to api.luadns.com (HTTPS/443)
This plugin is installed alongside any Keyfactor gateway server that supports DNS-01 domain validation (ACME REST Gateway, DigiCert, Sectigo, etc.). The same DLL works with every supported gateway.
See the official Keyfactor AnyCA Gateway REST installation documentation for the authoritative install instructions: . The steps below are a general guide; defer to the official docs if they diverge.
Download the latest release from the Releases page.
On the server hosting your gateway, unzip the release and copy the contents of the net10.0 directory into the gateway's Extensions folder.
Windows (example path — substitute the gateway product folder for your install):
C:\Program Files\Keyfactor\<GatewayName>\AnyGatewayREST\net10.0\Extensions\
Linux:
/opt/keyfactor/<gateway-name>/AnyGatewayREST/net10.0/Extensions/
Replace <GatewayName> (or <gateway-name> on Linux) with the gateway you are installing into (e.g. AcmeGwDns, DigiCert, Sectigo).
Restart the AnyGatewayREST Windows service for the gateway you installed the plugin into so the Extensions folder is rescanned.
After installing the plugin DLL into the gateway's Extensions folder, configure a new DNS Provider entry in the AnyCA Gateway REST UI and select LuaDNS as the provider type. See the official Keyfactor AnyCA Gateway REST documentation for the canonical UI walkthrough: .
Create a LuaDNS API key for the account that owns the zones you want the plugin to manage:
- Log in to the LuaDNS dashboard
- Navigate to Account > API Keys
- Create a new API key and copy the value — it authenticates alongside your account username (email)
Provide the username and key as LuaDns_Username and LuaDns_ApiKey in the plugin configuration below.
| Parameter | Description | Required | Example |
|---|---|---|---|
LuaDns_Username |
LuaDNS account username (email address) used for HTTP Basic authentication. | Yes | |
LuaDns_ApiKey |
LuaDNS API key used for HTTP Basic authentication. Found under Account > API Keys in the LuaDNS dashboard. | Yes | |
Standard configuration:
{
"LuaDns_Username": "you@example.com",
"LuaDns_ApiKey": "your-luadns-api-key"
}Once configured, the plugin automatically handles DNS validation during certificate enrollment and renewal:
- Record Creation: Plugin creates a DNS TXT record with the validation challenge
- Propagation Wait: Plugin waits for DNS propagation
- Verification: Plugin verifies the record exists on LuaDNS nameservers
- Cleanup: Plugin deletes the validation record after successful validation
The plugin discovers the appropriate LuaDNS zone for a domain by querying the LuaDNS API for all zones on the account, then matching the record's domain against zone names from most specific (longest) to least specific.
Test LuaDNS connectivity using curl against the API:
# List zones accessible to the account (validates username/API key)
curl -s -u "you@example.com:$LUADNS_API_KEY" https://api.luadns.com/v1/zonesAuthentication Failures
Symptom: 401 Unauthorized listing zones
- Verify the API key has not been revoked in the LuaDNS dashboard
- Confirm
LuaDns_Usernameis the account's login email, not a display name
Zone Not Found
Symptom: No LuaDNS zone found for example.com
- Verify the zone exists and is active in the LuaDNS account
- Confirm the account associated with the API key owns that zone
Enable debug logging in the gateway's logging configuration:
{
"Logging": {
"LogLevel": {
"Keyfactor.Extensions.DomainValidator.LuaDns": "Debug"
}
}
}Check LuaDNS service status: https://www.luadns.com/
The LuaDNS DNS Provider plugin is supported by Keyfactor for Keyfactor customers. If you have a support issue, please open a support ticket via the Keyfactor Support Portal at https://support.keyfactor.com.
To report a problem or suggest a new feature, use the Issues tab. If you want to contribute actual bug fixes or proposed enhancements, use the Pull requests tab.
Apache License 2.0, see LICENSE.
See all Keyfactor DNS Provider plugins.