Metadata-Version: 2.1
Name: certbot-dns-plesk
Version: 0.3.0
Summary: plesk DNS Authenticator plugin for Certbot
Home-page: https://gitlab.com/spike77453/certbot-dns-plesk
Author: Christian Schürmann
Author-email: spike@fedoraproject.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
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: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

certbot-dns-plesk
============

![PyPI - Status](https://img.shields.io/pypi/status/certbot-dns-plesk.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/certbot-dns-plesk.svg)
[![Coverage Status](https://coveralls.io/repos/gitlab/spike77453/certbot-dns-plesk/badge.svg?branch=master)](https://coveralls.io/gitlab/spike77453/certbot-dns-plesk?branch=master)

plesk 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 certbot-dns-plesk
```

Verify:

```
$ certbot plugins --text

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

...
```

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

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

```
dns_plesk_username = your-username
dns_plesk_password = secret
dns_plesk_api_url = https://plesk-api-host:8443
```

Usage
-----


```
certbot certonly \
        --authenticator dns-plesk  \
        --dns-plesk-credentials ~/plesk-credentials.ini \
        --dns-plesk-propagation-seconds 30 \
        -d your-domain
```


