Metadata-Version: 2.1
Name: certbot-dns-corenetworks
Version: 0.1.4
Summary: Core Networks DNS Authenticator plugin for Certbot
Home-page: https://github.com/thegeeklab/certbot-dns-corenetworks
Author: Robert Kaussow
Author-email: mail@thegeeklab.de
License: MIT
Description: # certbot-dns-corenetworks
        
        [![Build Status](https://img.shields.io/drone/build/thegeeklab/certbot-dns-corenetworks?logo=drone)](https://cloud.drone.io/thegeeklab/certbot-dns-corenetworks)
        [![Python Version](https://img.shields.io/pypi/pyversions/certbot-dns-corenetworks.svg)](https://pypi.org/project/certbot-dns-corenetworks/)
        [![PyPi Status](https://img.shields.io/pypi/status/certbot-dns-corenetworks.svg)](https://pypi.org/project/certbot-dns-corenetworks/)
        [![PyPi Release](https://img.shields.io/pypi/v/certbot-dns-corenetworks.svg)](https://pypi.org/project/certbot-dns-corenetworks/)
        [![Codecov](https://img.shields.io/codecov/c/github/thegeeklab/certbot-dns-corenetworks)](https://codecov.io/gh/thegeeklab/certbot-dns-corenetworks)
        [![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/certbot-dns-corenetworks)](https://github.com/thegeeklab/certbot-dns-corenetworks/graphs/contributors)
        [![License: MIT](https://img.shields.io/github/license/thegeeklab/certbot-dns-corenetworks)](<[LICENSE](https://github.com/thegeeklab/certbot-dns-corenetworks/blob/master/LICENSE)>)
        
        ## Install
        
        Install this package via pip in the same python environment where you installed your certbot.
        
        ```console
        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
        
        ```ini
        certbot_dns_corenetworks:dns_corenetworks_username = asaHB12r
        certbot_dns_corenetworks:dns_corenetworks_password = secure_passwor
        ```
        
        ## Examples
        
        To acquire a certificate for `example.com`
        
        ```bash
        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``
        
        ```bash
        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](https://github.com/thegeeklab/certbot-dns-corenetworks/graphs/contributors).
        
        ## License
        
        This project is licensed under the MIT License - see the [LICENSE](https://github.com/thegeeklab/certbot-dns-corenetworks/blob/master/LICENSE) file for details.
        
Keywords: dns,certbot,automation,corenetworks
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
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: Programming Language :: Python :: 3.8
Classifier: Topic :: Security
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4
Description-Content-Type: text/markdown
