Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

sijad/certbot-dns-arvancloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ArvanCloud DNS Authenticator certbot plugin

This certbot plugin automates the process of completing a dns-01 challenge by creating, and subsequently removing, TXT records using the ArvanCloud DNS API.

Install

Install this package via pip in the same python environment where you installed your certbot.

pip install certbot-dns-arvancloud

Usage

To start using DNS authentication for the ArvanCloud DNS API, pass the following arguments on certbot's command line:

Option Description
--authenticator certbot-dns-arvancloud:dns-arvancloud select the authenticator plugin (Required)
--certbot-dns-arvancloud:dns-arvancloud-credentials ArvanCloud DNS API credentials INI file. (Required)
--certbot-dns-arvancloud:dns-arvancloud-propagation-seconds Seconds to wait for the TXT record to propagate

Credentials

From the ArvanCloud control panel at go to "API Tokens" and add a personal access token.

An example credentials.ini file:

certbot_dns_arvancloud:dns_arvancloud_api_token = Apikey xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx

Examples

To acquire a certificate for example.com

certbot certonly \\
 --authenticator certbot-dns-arvancloud:dns-arvancloud \\
 --certbot-dns-arvancloud:dns-arvancloud-credentials /path/to/my/arvancloud.ini \\
 -d example.com

To acquire a certificate for *.example.com

   certbot certonly \\
     --authenticator certbot-dns-arvancloud:dns-arvancloud \\
     --certbot-dns-arvancloud:dns-arvancloud-credentials /path/to/my/arvancloud.ini \\
     -d '*.example.com'

Thanks to

This package is based on https://github.com/ctrlaltcoop/certbot-dns-hetzner and https://github.com/m42e/certbot-dns-ispconfig

Releases

No releases published

Packages

No packages published

Languages