Metadata-Version: 2.1
Name: certbot-dns-cloudns
Version: 0.1.0
Summary: ClouDNS DNS Authenticator plugin for Certbot
Home-page: https://github.com/inventage/certbot-dns-cloudns
License: Unlicense
Author: Simon Marti
Author-email: simon.marti@inventage.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: Name Service (DNS)
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-Dist: certbot (>=1.12.0,<2.0.0)
Requires-Dist: cloudns-api (>=0.9.3,<0.10.0)
Requires-Dist: dnspython (>=2.1.0,<3.0.0)
Requires-Dist: zope.interface (>=5.2.0,<6.0.0)
Project-URL: Repository, https://github.com/inventage/certbot-dns-cloudns
Description-Content-Type: text/x-rst

The `~certbot_dns_clounds.dns_cloudns` plugin automates the process of
completing a ``dns-01`` challenge (`~acme.challenges.DNS01`) by creating, and
subsequently removing, TXT records using the ClouDNS API.

Named Arguments
---------------
===================================== =====================================
``--dns-cloudns-credentials``         ClouDNS credentials_ INI file.
                                      (Required)
``--dns-cloudns-propagation-seconds`` The number of seconds to wait for DNS
                                      to propagate before asking the ACME
                                      server to verify the DNS record.
                                      (Default: 60)
===================================== =====================================

Credentials
-----------
Use of this plugin requires a configuration file containing the ClouDNS API
credentials.

.. code-block:: ini

   # Target user ID (see https://www.cloudns.net/api-settings/)
   dns_cloudns_auth_id=1234
   # Alternatively, one of the following two options can be set:
   # dns_cloudns_sub_auth_id=1234
   # dns_cloudns_sub_auth_user=foobar

   # API password
   dns_cloudns_auth_password=password1

The path to this file can be provided interactively or using the
``--dns-cloudns-credentials`` command-line argument. Certbot records the
path to this file for use during renewal, but does not store the file's
contents.

.. caution::
   You should protect your credentials, as they can be used to potentially
   add, update, or delete any record in the target DNS server. Users who can
   read this file can use these credentials to issue arbitrary API calls on
   your behalf. Users who can cause Certbot to run using these credentials can
   complete a ``dns-01`` challenge to acquire new certificates or revoke
   existing certificates for associated domains, even if those domains aren't
   being managed by this server.

Certbot will emit a warning if it detects that the credentials file can be
accessed by other users on your system. The warning reads "Unsafe permissions
on credentials configuration file", followed by the path to the credentials
file. This warning will be emitted each time Certbot uses the credentials file,
including for renewal, and cannot be silenced except by addressing the issue
(e.g., by using a command like ``chmod 600`` to restrict access to the file).


Examples
--------

.. code-block:: bash

   certbot certonly \
     --dns-cloudns \
     --dns-cloudns-credentials ~/.secrets/certbot/cloudns.ini \
     -d example.com

.. code-block:: bash

   certbot certonly \
     --dns-cloudns \
     --dns-cloudns-credentials ~/.secrets/certbot/cloudns.ini \
     -d example.com \
     -d www.example.com

.. code-block:: bash

   certbot certonly \
     --dns-cloudns \
     --dns-cloudns-credentials ~/.secrets/certbot/cloudns.ini \
     --dns-cloudns-propagation-seconds 30 \
     -d example.com

