Certbot DNS plugin for the core-networks.de DNS API
Go to file
Robert Kaussow 5d82f47658
build: migrate to poetry (#3)
2021-01-01 23:39:20 +01:00
.github add common repo label 2020-04-30 21:13:53 +02:00
certbot_dns_corenetworks build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
.drone.jsonnet build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
.drone.yml build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
.flake8 build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
.gitignore initial commit 2020-04-19 17:57:48 +02:00
CHANGELOG.md pin parsedatetime 2020-09-24 21:29:52 +02:00
LICENSE migrate to thegeeklab namespace 2020-09-24 21:19:25 +02:00
README.md build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
poetry.lock build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
pyproject.toml build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
renovate.json disable droneci manager 2020-11-11 22:26:45 +01:00
setup.cfg build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00

README.md

certbot-dns-corenetworks

Build Status Python Version PyPi Status PyPi Release Codecov GitHub contributors License: MIT

Install

Install this package via pip in the same python environment where you installed your certbot.

pip install certbot-dns-corenetworks

Usage

To start using DNS authentication for the Core Networks DNS API, pass the following arguments on certbot's command line:

Option Description
--authenticator certbot-dns-corenetworks:dns-corenetworks select the authenticator plugin (Required)
--certbot-dns-corenetworks:dns-corenetworks-credentials Hetzner DNS API credentials INI file. (Required)
--certbot-dns-corenetworks:dns-corenetworks-propagation-seconds Seconds to wait for the TXT record to propagate

Credentials

certbot_dns_corenetworks:dns_corenetworks_username = asaHB12r
certbot_dns_corenetworks:dns_corenetworks_password = secure_passwor

Examples

To acquire a certificate for example.com

certbot certonly \
 --authenticator certbot-dns-corenetworks:dns-corenetworks \
 --certbot-dns-corenetworks:dns-corenetworks-credentials /path/to/my/credentials.ini \
 -d example.com

To acquire a certificate for *.example.com

certbot certonly \
    --authenticator certbot-dns-corenetworks:dns-corenetworks \
    --certbot-dns-corenetworks:dns-corenetworks-credentials /path/to/my/credentials.ini \
    -d '*.example.com'

Contributors

Special thanks goes to all contributors.

License

This project is licensed under the MIT License - see the LICENSE file for details.