Dnspod DNS Authenticator plugin for Certbot
Project description
English
Just Another DNSPod DNS Authenticator plugin for Certbot
Just Another Tencent Cloud DNSPod DNS Authenticator plugin for Certbot
The certbot-dns-dnspod-109 plugin automates the process of
completing a dns-01 challenge (~acme.challenges.DNS01)
by creating, and subsequently removing, TXT records using the
Dnspod API (Tencent Cloud API 3.0).
If you are using Dnspod (Tencent Cloud) as your DNS provider, then this is your plugin.
Tested on
- Certbot 3.0.1
- Certbot 5.1.0
- Certbot 5.2.2
Usage
1. Install
pip:
pip install certbot-dns-dnspod-109
or
pip install git+https://github.com/10935336/certbot-dns-dnspod-109.git
snap:
The snap version is deprecated and will not receive updates after version v1.0.2.
snap install certbot-dns-dnspod-10935336
snap set certbot trust-plugin-with-root=ok
snap connect certbot:plugin certbot-dns-dnspod-10935336
2. Obtain SecretId and SecretKey
- Visit https://console.cloud.tencent.com/cam to create a sub-user
- Select "Programmatic access" for the sub-user access method
- Grant the sub-user QcloudDNSPodFullAccess (Cloud DNS full read and write access rights) permission
- Record SecretId and SecretKey
3. Prepare Credentials File
foobar.ini:
dns_dnspod_109_secret_id=foo
dns_dnspod_109_secret_key=bar
Optional parameters:
dns_dnspod_109_endpoint=dnspod.tencentcloudapi.com
4. Ready to go
Usage Examples
To acquire a certificate for example.com
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
-d example.com
To acquire a single certificate for both example.com and www.example.com
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
-d example.com \
-d www.example.com
Obtain a wildcard certificate for example.com
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
-d example.com \
-d *.example.com
To acquire a certificate for example.com, waiting 60 seconds for DNS propagation
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
--dns-dnspod-109-propagation-seconds 60 \
-d example.com
Test run (Skipping the final certificate issuance)
certbot certonly \
--register-unsafely-without-email \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
--dns-dnspod-109-propagation-seconds 60 \
-v \
--dry-run
Test run a wildcard certificate for example.com(Skipping the final certificate issuance)
certbot certonly \
--register-unsafely-without-email \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
--dns-dnspod-109-propagation-seconds 60 \
-v \
--dry-run \
-d example.com \
-d *.example.com
Parameter Description
--dns-dnspod-109-credentials <path> Path to the credential file (required)
--dns-dnspod-109-propagation-seconds The number of seconds to wait for DNS propagation before asking the ACME server to verify DNS records. If DNS records appear to be added successfully but verification fails, try increasing this value. (Default: 10)
简体中文
只是另一个适用于 Certbot 的 DNSPod DNS Authenticator 插件
只是另一个适用于 Certbot 的 Tencent Cloud DNSPod DNS Authenticator 插件
certbot-dns-dnspod-109 插件通过使用 Dnspod API(腾讯云 API 3.0)创建并随后删除 TXT 记录,自动完成dns-01 质询(~acme.challenges.DNS01)。
如果你使用 Dnspod (腾讯云) 作为你的域名解析服务提供商,那么这就是你的插件。
在以下版本中测试通过
- Certbot 3.0.1
- Certbot 5.1.0
- Certbot 5.2.2
使用方法
1. 安装
pip:
pip install certbot-dns-dnspod-109
或者
pip install git+https://github.com/10935336/certbot-dns-dnspod-109.git
snap:
snap 版本已弃用,将不会收到 v1.0.2 版本之后的更新
snap install certbot-dns-dnspod-10935336
snap set certbot trust-plugin-with-root=ok
snap connect certbot:plugin certbot-dns-dnspod-10935336
2. 获取 SecretId 和 SecretKey
- 访问 https://console.cloud.tencent.com/cam 创建子用户
- 子用户访问方式选择“编程访问”
- 授予子用户 QcloudDNSPodFullAccess(Cloud DNS 完全读写访问权限)权限
- 记录 SecretId 和 SecretKey
3. 准备凭证文件
foobar.ini:
dns_dnspod_109_secret_id=foo
dns_dnspod_109_secret_key=bar
可选参数:
dns_dnspod_109_endpoint=dnspod.tencentcloudapi.com
4. 准备就绪
使用示例
获取 example.com 的证书
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
-d example.com
获取同时有 example.com 和 www.example.com 的单个证书
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
-d example.com \
-d www.example.com
获取 example.com 的泛域名证书
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
-d example.com \
-d *.example.com
获取 example.com 的证书,但设置等待 60 秒(等待 DNS 传播)
certbot certonly \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
--dns-dnspod-109-propagation-seconds 60 \
-d example.com
测试运行(跳过最终证书颁发)
certbot certonly \
--register-unsafely-without-email \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
--dns-dnspod-109-propagation-seconds 60 \
-v \
--dry-run
测试运行,获取 example.com 的泛域名证书(跳过最终证书颁发)
certbot certonly \
--register-unsafely-without-email \
-a dns-dnspod-109 \
--dns-dnspod-109-credentials ~/.secrets/certbot/dnspod-109.ini \
--dns-dnspod-109-propagation-seconds 60 \
-v \
--dry-run \
-d example.com \
-d *.example.com
参数说明
--dns-dnspod-109-credentials <路径> 指向凭证文件的路径(必需)
--dns-dnspod-109-propagation-seconds 在要求 ACME 服务器验证 DNS 记录之前等待 DNS 传播的秒数。如果显示 DNS 记录添加成功但验证失败,则尝试增加此值 (默认值:10)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file certbot_dns_dnspod_109-1.0.3.tar.gz.
File metadata
- Download URL: certbot_dns_dnspod_109-1.0.3.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12518b9644296147ba52b9abc3640f25a05f94c3e7a4fc17efb05e012376c708
|
|
| MD5 |
ed50d86fcf2121f3cbb68a646164b583
|
|
| BLAKE2b-256 |
d87e0cda5587c150c675ea349e012cebea68ccb551c8b1a538ea091947b32c76
|
File details
Details for the file certbot_dns_dnspod_109-1.0.3-py3-none-any.whl.
File metadata
- Download URL: certbot_dns_dnspod_109-1.0.3-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc98a6f70f06b17b08aa2e2dbf9fe57d9110b30358add620204dd4a96cf0bc12
|
|
| MD5 |
6569596766ab6789a79a568982c246f9
|
|
| BLAKE2b-256 |
0778fc6f1fbfa1e460084342a58706ed3b415094227c7678ff2729bbf675c993
|