Certbot DNS plugin for the core-networks.de DNS API
Go to file
Robert Kaussow 2eb4543f24
[skip ci] update year in license file
2021-01-03 21:40:24 +01:00
.github chore: replace master by main as default branch 2021-01-01 23:49:54 +01:00
certbot_dns_corenetworks build: migrate to poetry (#3) 2021-01-01 23:39:20 +01:00
.drone.jsonnet chore: replace master by main as default branch 2021-01-01 23:49:54 +01:00
.drone.yml chore: replace master by main as default branch 2021-01-01 23:49:54 +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 [skip ci] fix changelog 2021-01-02 21:29:16 +01:00
CONTRIBUTING.md docs: add contributing information 2021-01-01 23:43:22 +01:00
LICENSE [skip ci] update year in license file 2021-01-03 21:40:24 +01:00
README.md docs: switch to new certbot syntax 2021-01-02 00:09:37 +01:00
poetry.lock fix(deps): update dependency corenetworks to ^0.2.0 (#5) 2021-01-03 15:06:20 +01:00
pyproject.toml fix(deps): update dependency corenetworks to ^0.2.0 (#5) 2021-01-03 15:06:20 +01:00
renovate.json chore: use renovate preset config 2021-01-01 23:55:08 +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 dns-corenetworks select the authenticator plugin (Required)
--dns-corenetworks-credentials Hetzner DNS API credentials INI file. (Required)
--dns-corenetworks-propagation-seconds Seconds to wait for the TXT record to propagate

Credentials

dns_corenetworks_username = asaHB12r
dns_corenetworks_password = secure_passwor

Examples

To acquire a certificate for example.com

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

To acquire a certificate for *.example.com

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

Contributors

Special thanks goes to all contributors. If you would like to contribute, please see the instructions.

License

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