Metadata-Version: 2.1
Name: certbot-dns-bitblaze
Version: 1.0.0
Summary: bitblaze DNS Authenticator plugin for Certbot
Home-page: https://github.com/lehuizi/certbot-dns-bitblaze.git
Author: Alexander Holzapfel
Author-email: hello@bitblaze.io
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Requires-Dist: acme (>=0.31.0)
Requires-Dist: certbot (>=0.31.0)
Requires-Dist: setuptools
Requires-Dist: zope.interface
Requires-Dist: dns-lexicon
Requires-Dist: tldextract (>=3.1.0)

certbot-dns-bitblaze
============

![Tests](https://github.com/lehuizi/certbot-dns-bitblaze/workflows/Tests/badge.svg)
![Upload Python Package](https://github.com/lehuizi/certbot-dns-bitblaze/workflows/Upload%20Python%20Package/badge.svg)
[![Python Version](https://img.shields.io/pypi/pyversions/certbot-dns-bitblaze)](https://pypi.org/project/certbot-dns-bitblaze/)
[![PyPi Status](https://img.shields.io/pypi/status/certbot-dns-bitblaze)](https://pypi.org/project/certbot-dns-bitblaze/)
[![Version](https://img.shields.io/github/v/release/lehuizi/certbot-dns-bitblaze)](https://pypi.org/project/certbot-dns-bitblaze/)

bitblaze DNS Authenticator plugin for [Certbot](https://certbot.eff.org/).

This plugin is built from the ground up and follows the development style and life-cycle
of other `certbot-dns-*` plugins found in the
[Official Certbot Repository](https://github.com/certbot/certbot).

Installation
------------

```
pip install --upgrade certbot # optional
pip install certbot-dns-bitblaze
```

Verify:

```
$ certbot plugins --text

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* dns-bitblaze
Description: Obtain certificates using a DNS TXT record by using the bitblaze
dns api.
Interfaces: IAuthenticator, IPlugin
Entry point: dns-bitblaze = certbot_dns_bitblaze.dns_bitblaze:Authenticator

...
...
```

Configuration
-------------

The credentials file e.g. `~/bbdns-credentials.ini` should look like this:

```
dns_bitblaze_token=put_your_token_here
```

Usage
-----


```
certbot certonly --authenticator dns-bitblaze --dns-bitblaze-credentials=~/bbdns-credentials.ini -d bitblaze.io
```


