5 CA Handler for NetGuard Certificate Lifecycle Manager
grindsa edited this page 2025-12-30 06:22:30 +00:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Connecting to NetGuard Certificate Lifecycle Manager

Prerequisites

Ensure the following conditions are met before configuring the connection:

  • NCLM 24.2.0 or higher must be up and running.
  • The external REST API must be enabled.
  • You must have a username and password to access NCLM via the REST service.
  • A container must be created in NCLM to store the certificates.

Configuration

Modify the server configuration file (/acme_srv/acme_srv.cfg) and add the following parameters:

[CAhandler]
handler_file: examples/ca_handler/nclm_ca_handler.py
api_host: http://<ip>:<port>
api_user: <user>
api_password: <password>
ca_bundle: <value>
ca_name: <ca_name>
container_name: <container_name>
template_name: <template_name>

Parameter Explanations

  • api_host URL of the Certifier REST service.
  • api_user Username for the REST API.
  • api_user_variable (optional) Environment variable containing the REST username (overridden if api_user is set in acme_srv.cfg).
  • api_password Password for the REST API user.
  • api_password_variable (optional) Environment variable containing the REST password (overridden if api_password is set in acme_srv.cfg).
  • ca_bundle (optional) Certificate bundle used to validate the server certificate. Can be True, False, or a filename (default: True).
  • ca_name Name of the CA used for certificate enrollment.
  • container_name Name of the container where certificates will be stored.
  • template_name (optional) Name of the template to be applied to the CSR.
  • allowed_domainlist (optional) List of allowed domain names for enrollment (JSON format). Example: ["bar.local", "bar.foo.local"] (default: []).
  • enrollment_config_log (optional) Enable logging of enrollment parameters (default: False).
  • enrollment_config_log_skip_list (optional) List of enrollment parameters to exclude from logs (JSON format). Example: ["parameter1", "parameter2"] (default: []).