Skip to main content

certbot-dns-poweradmin

Test codecov PyPI Python

PowerAdmin DNS Authenticator plugin for Certbot

This plugin automates the process of completing a dns-01 challenge by creating, and subsequently removing, TXT records using the PowerAdmin API.

Version Compatibility

Plugin Version Poweradmin Version Python Certbot
0.2.x 4.1.0 - 4.4.x >= 3.10 >= 5.1.0
0.1.x 4.1.0 - 4.2.x >= 3.10 >= 5.1.0

Installation

pip install certbot-dns-poweradmin

PowerAdmin Configuration

Your PowerAdmin installation needs to have the API enabled. The plugin supports both API v1 and v2.

You'll need an API key with permissions to:

  • List zones
  • Create DNS records
  • Delete DNS records

Usage

  1. Create a credential file (e.g., /etc/letsencrypt/poweradmin.ini):
dns_poweradmin_api_url = https://poweradmin.example.com
dns_poweradmin_api_key = your-api-key-here
dns_poweradmin_api_version = v2

The api_version is optional and defaults to v2. Set it to v1 if your PowerAdmin installation uses the older API.

  1. Secure the credential file:
chmod 600 /etc/letsencrypt/poweradmin.ini
  1. Run certbot:
certbot certonly \
  --authenticator dns-poweradmin \
  --dns-poweradmin-credentials /etc/letsencrypt/poweradmin.ini \
  -d example.com

Arguments

Argument Description
--dns-poweradmin-credentials Path to credentials INI file (required)
--dns-poweradmin-propagation-seconds Seconds to wait for DNS propagation (default: 120)

Examples

Get a certificate for a single domain:

certbot certonly \
  --authenticator dns-poweradmin \
  --dns-poweradmin-credentials /etc/letsencrypt/poweradmin.ini \
  -d example.com

Get a wildcard certificate:

certbot certonly \
  --authenticator dns-poweradmin \
  --dns-poweradmin-credentials /etc/letsencrypt/poweradmin.ini \
  -d example.com \
  -d "*.example.com"

With custom propagation time:

certbot certonly \
  --authenticator dns-poweradmin \
  --dns-poweradmin-credentials /etc/letsencrypt/poweradmin.ini \
  --dns-poweradmin-propagation-seconds 300 \
  -d example.com

Docker

FROM certbot/certbot
RUN pip install certbot-dns-poweradmin

Build and run:

docker build -t certbot/dns-poweradmin .

docker run --rm \
  -v /etc/letsencrypt:/etc/letsencrypt \
  -v /var/lib/letsencrypt:/var/lib/letsencrypt \
  certbot/dns-poweradmin certonly \
  --authenticator dns-poweradmin \
  --dns-poweradmin-credentials /etc/letsencrypt/poweradmin.ini \
  -d example.com

Troubleshooting

Plugin not found by certbot

If certbot plugins doesn't show dns-poweradmin, ensure both certbot and the plugin are installed in the same Python environment:

# Check where certbot is installed
which certbot

# If using system certbot but plugin in venv, either:
# Option 1: Install certbot in the same venv
pip install certbot certbot-dns-poweradmin

# Option 2: Use certbot from the venv
python -m certbot plugins

Virtual environment usage

When using a virtual environment, install both certbot and the plugin together:

python3 -m venv certbot-env
source certbot-env/bin/activate
pip install certbot certbot-dns-poweradmin

# Run certbot from the venv
certbot plugins  # should show dns-poweradmin

API connection issues

  • Use the base URL of your PowerAdmin installation as dns_poweradmin_api_url (e.g. https://poweradmin.example.com), including the https:// scheme and without the /api path — the plugin appends /api/v1 or /api/v2 itself
  • The URL must not redirect (e.g. http:// to https://); the plugin refuses redirects and asks you to configure the final URL directly
  • Check that your API key has the required permissions

Sponsors

stepping stone AG

We thank stepping stone AG for their support of this project.

License

Apache License 2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

certbot_dns_poweradmin-0.2.6.tar.gz (63.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

certbot_dns_poweradmin-0.2.6-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file certbot_dns_poweradmin-0.2.6.tar.gz.

File metadata

  • Download URL: certbot_dns_poweradmin-0.2.6.tar.gz
  • Upload date:
  • Size: 63.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for certbot_dns_poweradmin-0.2.6.tar.gz
Algorithm Hash digest
SHA256 c1c62d89d6ed44f283b46ad4f82e1b5d1c96b3184541e2bd358a6ba5204f1b55
MD5 4d4e37a97fac6e162688309a71363baa
BLAKE2b-256 e3f3a88d2f180b8b584fdea4dd96654b3645fd33995f372631e41ed93041b75f

See more details on using hashes here.

File details

Details for the file certbot_dns_poweradmin-0.2.6-py3-none-any.whl.

File metadata

File hashes

Hashes for certbot_dns_poweradmin-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 88f74fada2dc449a2709f60d5fd00139832c58a724aa06909e635d42cd1de9b4
MD5 4bd701e08a742db8f05ffc8218751f45
BLAKE2b-256 6ffc1ffaece42ca45c6d97961925adbd6048f73b4f6a3c30d4d60eac39c9473a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page