certbot-dns-eurodns


Namecertbot-dns-eurodns JSON
Version 1.8.1 PyPI version JSON
download
home_pagehttps://github.com/EuroDNS/certbot-dns-eurodns
SummaryEuroDNS DNS Authenticator plugin for Certbot
upload_time2024-09-03 08:39:28
maintainerNone
docs_urlNone
authorCertbot Project
requires_python!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            certbot-dns-eurodns
======================

EuroDNS_ DNS Authenticator plugin for certbot_.

This plugin automates the process of completing a ``dns-01`` challenge by
creating, and subsequently removing, TXT records using the `EuroDNS API`_.

.. _eurodns: https://eurodns.com
.. _`EuroDNS API`: https://docapi.eurodns.com/
.. _certbot: https://certbot.eff.org/


Named Arguments
---------------

================================================================  =====================================
``--certbot-dns-eurodns:dns-eurodns-credentials``                 EuroDNS credentials_ INI file. **(required)**
``--certbot-dns-eurodns:dns-eurodns-propagation-seconds``         The number of seconds to wait for DNS to propagate before asking the ACME server to verify the DNS record(Default: 30)
================================================================  =====================================

Note that the seemingly redundant ``certbot-dns-eurodns:`` prefix is imposed by
certbot for external plugins.

If you are using certbot **1.7.0** or higher, it is possible to use the unprefixed arguments and configuration options in `credentials.ini`. See the second example below.

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

.. code-block:: bash

   pip install certbot-dns-eurodns

Credentials
-----------

Use of this plugin requires a configuration file containing EuroDNS API
credentials.

See the `EuroDNS API`_ documentation for more information.

An example ``credentials.ini`` file:

.. code-block:: ini

   dns_eurodns_applicationId = myuser
   dns_eurodns_apiKey = mysecretpassword

The path to this file can be provided interactively or using the
``--certbot-dns-eurodns:dns-eurodns-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 these API credentials as you would the
password to your EuroDNS user account. 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.

If applicable, we suggest that you create API credentials for domains used by your
application, in order to reduce the potential impact of lost credentials.

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
--------

To acquire a single certificate for both ``example.com`` and
``www.example.com``, waiting 120 seconds for DNS propagation (the default):

.. code-block:: bash

   certbot certonly \
     --authenticator certbot-dns-eurodns:dns-eurodns \
     --certbot-dns-eurodns:dns-eurodns-credentials /etc/letsencrypt/eurodns.ini \
     --certbot-dns-eurodns:dns-eurodns-propagation-seconds 120 \
     -d example.com \
     -d www.example.com

If you are using certbot **1.7.0** (released on august 4, 2020) or higher, you can now call the plugin without the prefix:

.. code-block:: bash

   certbot certonly \
     --authenticator dns-eurodns \
     --dns-eurodns-credentials /etc/letsencrypt/eurodns.ini \
     --dns-eurodns-propagation-seconds 120 \
     -d example.com \
     -d www.example.com

In this second example, make sure you are also removing the prefixes in `/etc/letsencrypt/eurodns.ini`. Certbot will fail to discover your credentials otherwise.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/EuroDNS/certbot-dns-eurodns",
    "name": "certbot-dns-eurodns",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Certbot Project",
    "author_email": "miquel@entorno.es",
    "download_url": "https://files.pythonhosted.org/packages/1c/10/04ad7083af1d1d9ed0a0abe0f6a6fd929ba9a41480b0c88a65da0ad0bb1f/certbot-dns-eurodns-1.8.1.tar.gz",
    "platform": null,
    "description": "certbot-dns-eurodns\n======================\n\nEuroDNS_ DNS Authenticator plugin for certbot_.\n\nThis plugin automates the process of completing a ``dns-01`` challenge by\ncreating, and subsequently removing, TXT records using the `EuroDNS API`_.\n\n.. _eurodns: https://eurodns.com\n.. _`EuroDNS API`: https://docapi.eurodns.com/\n.. _certbot: https://certbot.eff.org/\n\n\nNamed Arguments\n---------------\n\n================================================================  =====================================\n``--certbot-dns-eurodns:dns-eurodns-credentials``                 EuroDNS credentials_ INI file. **(required)**\n``--certbot-dns-eurodns:dns-eurodns-propagation-seconds``         The number of seconds to wait for DNS to propagate before asking the ACME server to verify the DNS record(Default: 30)\n================================================================  =====================================\n\nNote that the seemingly redundant ``certbot-dns-eurodns:`` prefix is imposed by\ncertbot for external plugins.\n\nIf you are using certbot **1.7.0** or higher, it is possible to use the unprefixed arguments and configuration options in `credentials.ini`. See the second example below.\n\nInstallation\n------------\n\n.. code-block:: bash\n\n   pip install certbot-dns-eurodns\n\nCredentials\n-----------\n\nUse of this plugin requires a configuration file containing EuroDNS API\ncredentials.\n\nSee the `EuroDNS API`_ documentation for more information.\n\nAn example ``credentials.ini`` file:\n\n.. code-block:: ini\n\n   dns_eurodns_applicationId = myuser\n   dns_eurodns_apiKey = mysecretpassword\n\nThe path to this file can be provided interactively or using the\n``--certbot-dns-eurodns:dns-eurodns-credentials`` command-line argument. Certbot\nrecords the path to this file for use during renewal, but does not store the\nfile's contents.\n\n**CAUTION:** You should protect these API credentials as you would the\npassword to your EuroDNS user account. Users who can read this file can use these\ncredentials to issue arbitrary API calls on your behalf. Users who can cause\nCertbot to run using these credentials can complete a ``dns-01`` challenge to\nacquire new certificates or revoke existing certificates for associated\ndomains, even if those domains aren't being managed by this server.\n\nIf applicable, we suggest that you create API credentials for domains used by your\napplication, in order to reduce the potential impact of lost credentials.\n\nCertbot will emit a warning if it detects that the credentials file can be\naccessed by other users on your system. The warning reads \"Unsafe permissions\non credentials configuration file\", followed by the path to the credentials\nfile. This warning will be emitted each time Certbot uses the credentials file,\nincluding for renewal, and cannot be silenced except by addressing the issue\n(e.g., by using a command like ``chmod 600`` to restrict access to the file).\n\n\nExamples\n--------\n\nTo acquire a single certificate for both ``example.com`` and\n``www.example.com``, waiting 120 seconds for DNS propagation (the default):\n\n.. code-block:: bash\n\n   certbot certonly \\\n     --authenticator certbot-dns-eurodns:dns-eurodns \\\n     --certbot-dns-eurodns:dns-eurodns-credentials /etc/letsencrypt/eurodns.ini \\\n     --certbot-dns-eurodns:dns-eurodns-propagation-seconds 120 \\\n     -d example.com \\\n     -d www.example.com\n\nIf you are using certbot **1.7.0** (released on august 4, 2020) or higher, you can now call the plugin without the prefix:\n\n.. code-block:: bash\n\n   certbot certonly \\\n     --authenticator dns-eurodns \\\n     --dns-eurodns-credentials /etc/letsencrypt/eurodns.ini \\\n     --dns-eurodns-propagation-seconds 120 \\\n     -d example.com \\\n     -d www.example.com\n\nIn this second example, make sure you are also removing the prefixes in `/etc/letsencrypt/eurodns.ini`. Certbot will fail to discover your credentials otherwise.\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "EuroDNS DNS Authenticator plugin for Certbot",
    "version": "1.8.1",
    "project_urls": {
        "Homepage": "https://github.com/EuroDNS/certbot-dns-eurodns"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09f5b7b8b86bfd5db6b7d2a967b28b88d1b30b5edc2613b063684908e3b2d9d7",
                "md5": "f0a76520ca933728ebb8d8d1fd69f0b1",
                "sha256": "7117e91737b78b8a17cbe23be9119940255171d9a67598b39571ae0488c0a3f0"
            },
            "downloads": -1,
            "filename": "certbot_dns_eurodns-1.8.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f0a76520ca933728ebb8d8d1fd69f0b1",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7",
            "size": 11173,
            "upload_time": "2024-09-03T08:39:27",
            "upload_time_iso_8601": "2024-09-03T08:39:27.207512Z",
            "url": "https://files.pythonhosted.org/packages/09/f5/b7b8b86bfd5db6b7d2a967b28b88d1b30b5edc2613b063684908e3b2d9d7/certbot_dns_eurodns-1.8.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c1004ad7083af1d1d9ed0a0abe0f6a6fd929ba9a41480b0c88a65da0ad0bb1f",
                "md5": "883d79a17a826a34eae6173f4a1c3dc9",
                "sha256": "f13c1827647b1f5b5cbf82bad99b1661d754e82d101e1d8f5ef9c1eaa0871dbb"
            },
            "downloads": -1,
            "filename": "certbot-dns-eurodns-1.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "883d79a17a826a34eae6173f4a1c3dc9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7",
            "size": 10933,
            "upload_time": "2024-09-03T08:39:28",
            "upload_time_iso_8601": "2024-09-03T08:39:28.226115Z",
            "url": "https://files.pythonhosted.org/packages/1c/10/04ad7083af1d1d9ed0a0abe0f6a6fd929ba9a41480b0c88a65da0ad0bb1f/certbot-dns-eurodns-1.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-03 08:39:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "EuroDNS",
    "github_project": "certbot-dns-eurodns",
    "github_not_found": true,
    "lcname": "certbot-dns-eurodns"
}
        
Elapsed time: 3.63229s