2020-10-04 17:56:02 -04:00
/ * *
* This file contains info about available Certbot DNS plugins .
2020-10-06 08:49:02 -04:00
* This only works for plugins which use the standard argument structure , so :
* -- authenticator < plugin - name > -- < plugin - name > - credentials < FILE > -- < plugin - name > - propagation - seconds < number >
2020-10-04 17:56:02 -04:00
*
* File Structure :
*
* {
* cloudflare : {
* display _name : "Name displayed to the user" ,
* package _name : "Package name in PyPi repo" ,
2021-10-07 11:13:48 -04:00
* version _requirement : "Optional package version requirements (e.g. ==1.3 or >=1.2,<2.0, see https://www.python.org/dev/peps/pep-0440/#version-specifiers)" ,
2020-11-03 15:28:50 -05:00
* dependencies : "Additional dependencies, space separated (as you would pass it to pip install)" ,
2020-10-04 17:56:02 -04:00
* credentials : ` Template of the credentials file ` ,
2021-10-20 12:16:54 -04:00
* full _plugin _name : "The full plugin name as used in the commandline with certbot, e.g. 'dns-njalla'" ,
2020-10-04 17:56:02 -04:00
* } ,
* ...
* }
*
* /
module . exports = {
2021-05-09 15:36:52 -04:00
//####################################################//
acmedns : {
2021-10-07 11:39:18 -04:00
display _name : 'ACME-DNS' ,
package _name : 'certbot-dns-acmedns' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.1.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_acmedns_api_url = http://acmedns-server/
dns _acmedns _registration _file = / d a t a / a c m e - r e g i s t r a t i o n . j s o n ` ,
full _plugin _name : 'dns-acmedns' ,
2021-05-09 15:36:52 -04:00
} ,
2020-11-22 03:08:56 -05:00
aliyun : {
2021-10-07 11:39:18 -04:00
display _name : 'Aliyun' ,
package _name : 'certbot-dns-aliyun' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.38.1' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_aliyun_access_key = 12345678
dns _aliyun _access _key _secret = 1234567890 abcdef1234567890abcdef ` ,
full _plugin _name : 'dns-aliyun' ,
2020-11-22 03:08:56 -05:00
} ,
//####################################################//
2021-05-19 15:03:07 -04:00
azure : {
2021-10-07 11:39:18 -04:00
display _name : 'Azure' ,
package _name : 'certbot-dns-azure' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=1.2.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` # This plugin supported API authentication using either Service Principals or utilizing a Managed Identity assigned to the virtual machine.
2021-05-19 15:03:07 -04:00
# Regardless which authentication method used , the identity will need the “ DNS Zone Contributor ” role assigned to it .
# As multiple Azure DNS Zones in multiple resource groups can exist , the config file needs a mapping of zone to resource group ID . Multiple zones - > ID mappings can be listed by using the key dns _azure _zoneX where X is a unique number . At least 1 zone mapping is required .
2021-05-09 13:46:20 -04:00
2021-05-19 15:03:07 -04:00
# Using a service principal ( option 1 )
dns _azure _sp _client _id = 912 ce44a - 0156 - 4669 - ae22 - c16a17d34ca5
dns _azure _sp _client _secret = E - xqXU83Y - jzTI6xe9fs2YC ~ mck3ZzUih9
dns _azure _tenant _id = ed1090f3 - ab18 - 4 b12 - 816 c - 599 af8a88cf7
2021-05-09 13:46:20 -04:00
2021-05-19 15:03:07 -04:00
# Using used assigned MSI ( option 2 )
# dns _azure _msi _client _id = 912 ce44a - 0156 - 4669 - ae22 - c16a17d34ca5
2021-05-09 13:46:20 -04:00
2021-05-19 15:03:07 -04:00
# Using system assigned MSI ( option 3 )
# dns _azure _msi _system _assigned = true
2021-05-09 13:46:20 -04:00
2021-05-19 15:03:07 -04:00
# Zones ( at least one always required )
dns _azure _zone1 = example . com : / s u b s c r i p t i o n s / c 1 3 5 a b c e - d 8 7 d - 4 8 d f - 9 3 6 c - 1 5 5 9 6 c 6 9 6 8 a 5 / r e s o u r c e G r o u p s / d n s 1
dns _azure _zone2 = example . org : / s u b s c r i p t i o n s / 9 9 8 0 0 9 0 3 - f b 1 4 - 4 9 9 2 - 9 a f f - 1 2 e a f 2 7 4 4 6 2 2 / r e s o u r c e G r o u p s / d n s 2 ` ,
full _plugin _name : 'dns-azure' ,
} ,
2021-05-09 13:46:20 -04:00
//####################################################//
2020-10-14 20:33:51 -04:00
cloudflare : {
2021-12-29 03:54:59 -05:00
display _name : 'Cloudflare' ,
package _name : 'certbot-dns-cloudflare' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : 'cloudflare' ,
credentials : ` # Cloudflare API token
2020-10-04 17:56:02 -04:00
dns _cloudflare _api _token = 0123456789 abcdef0123456789abcdef01234567 ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-cloudflare' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-05-09 15:47:30 -04:00
cloudns : {
2021-10-07 11:39:18 -04:00
display _name : 'ClouDNS' ,
package _name : 'certbot-dns-cloudns' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.4.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` # Target user ID (see https://www.cloudns.net/api-settings/)
2021-05-09 15:47:30 -04:00
dns _cloudns _auth _id = 1234
# Alternatively , one of the following two options can be set :
# dns _cloudns _sub _auth _id = 1234
2021-10-09 17:29:25 -04:00
# dns _cloudns _sub _auth _user = foobar
2021-05-09 15:47:30 -04:00
# API password
dns _cloudns _auth _password = password1 ` ,
full _plugin _name : 'dns-cloudns' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
cloudxns : {
2021-12-29 03:54:59 -05:00
display _name : 'CloudXNS' ,
package _name : 'certbot-dns-cloudxns' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` dns_cloudxns_api_key = 1234567890abcdef1234567890abcdef
2020-10-04 17:56:02 -04:00
dns _cloudxns _secret _key = 1122334455667788 ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-cloudxns' ,
2020-10-14 20:33:51 -04:00
} ,
2022-01-15 04:48:04 -05:00
//####################################################//
constellix : {
display _name : 'Constellix' ,
package _name : 'certbot-dns-constellix' ,
version _requirement : '~=0.2.1' ,
dependencies : '' ,
credentials : ` dns_constellix_apikey = 5fb4e76f-ac91-43e5-f982458bc595
dns _constellix _secretkey = 47 d99fd0 - 32e7 - 4e07 - 85 b46d08e70b
dns _constellix _endpoint = https : //api.dns.constellix.com/v1`,
full _plugin _name : 'dns-constellix' ,
} ,
2020-10-14 20:33:51 -04:00
//####################################################//
corenetworks : {
2021-10-07 11:39:18 -04:00
display _name : 'Core Networks' ,
package _name : 'certbot-dns-corenetworks' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.1.4' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_corenetworks_username = asaHB12r
dns _corenetworks _password = secure _password ` ,
full _plugin _name : 'dns-corenetworks' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
cpanel : {
2021-10-07 11:39:18 -04:00
display _name : 'cPanel' ,
package _name : 'certbot-dns-cpanel' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.2.2' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` cpanel_url = https://cpanel.example.com:2083
cpanel _username = user
cpanel _password = hunter2 ` ,
full _plugin _name : 'cpanel' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-10-07 11:13:48 -04:00
desec : {
2021-10-07 11:39:18 -04:00
display _name : 'deSEC' ,
package _name : 'certbot-dns-desec' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.3.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_desec_token = YOUR_DESEC_API_TOKEN
dns _desec _endpoint = https : //desec.io/api/v1/`,
full _plugin _name : 'dns-desec' ,
2021-10-07 11:13:48 -04:00
} ,
//####################################################//
2021-05-09 15:36:52 -04:00
duckdns : {
2021-10-07 11:39:18 -04:00
display _name : 'DuckDNS' ,
package _name : 'certbot-dns-duckdns' ,
2022-05-13 18:30:18 -04:00
version _requirement : '~=0.9' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : 'dns_duckdns_token=your-duckdns-token' ,
full _plugin _name : 'dns-duckdns' ,
2021-05-09 15:36:52 -04:00
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
digitalocean : {
2021-12-29 03:54:59 -05:00
display _name : 'DigitalOcean' ,
package _name : 'certbot-dns-digitalocean' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : 'dns_digitalocean_token = 0000111122223333444455556666777788889999aaaabbbbccccddddeeeeffff' ,
full _plugin _name : 'dns-digitalocean' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
directadmin : {
2021-10-07 11:39:18 -04:00
display _name : 'DirectAdmin' ,
package _name : 'certbot-dns-directadmin' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.0.23' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` directadmin_url = https://my.directadminserver.com:2222
2020-10-06 09:16:45 -04:00
directadmin _username = username
directadmin _password = aSuperStrongPassword ` ,
2021-10-07 11:13:48 -04:00
full _plugin _name : 'directadmin' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
dnsimple : {
2021-12-29 03:54:59 -05:00
display _name : 'DNSimple' ,
package _name : 'certbot-dns-dnsimple' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : 'dns_dnsimple_token = MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw' ,
full _plugin _name : 'dns-dnsimple' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
dnsmadeeasy : {
2021-12-29 03:54:59 -05:00
display _name : 'DNS Made Easy' ,
package _name : 'certbot-dns-dnsmadeeasy' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` dns_dnsmadeeasy_api_key = 1c1a3c91-4770-4ce7-96f4-54c0eb0e457a
2020-10-04 17:56:02 -04:00
dns _dnsmadeeasy _secret _key = c9b5625f - 9834 - 4 ff8 - baba - 4 ed5f32cae55 ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-dnsmadeeasy' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
dnspod : {
2021-10-07 11:39:18 -04:00
display _name : 'DNSPod' ,
package _name : 'certbot-dns-dnspod' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.1.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2022-01-02 05:49:18 -05:00
credentials : ` dns_dnspod_email = "email@example.com"
dns _dnspod _api _token = "id,key" ` ,
2021-10-20 12:16:54 -04:00
full _plugin _name : 'dns-dnspod' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2022-10-15 18:24:18 -04:00
domainoffensive : {
display _name : 'DomainOffensive (do.de)' ,
package _name : 'certbot-dns-do' ,
version _requirement : '~=0.31.0' ,
dependencies : '' ,
credentials : 'dns_do_api_token = YOUR_DO_DE_AUTH_TOKEN' ,
full _plugin _name : 'dns-do' ,
2022-11-07 20:53:13 -05:00
} ,
//####################################################//
2022-09-28 05:48:31 -04:00
domeneshop : {
display _name : 'Domeneshop' ,
package _name : 'certbot-dns-domeneshop' ,
version _requirement : '~=0.2.8' ,
dependencies : '' ,
credentials : ` dns_domeneshop_client_token=YOUR_DOMENESHOP_CLIENT_TOKEN
dns _domeneshop _client _secret = YOUR _DOMENESHOP _CLIENT _SECRET ` ,
full _plugin _name : 'dns-domeneshop' ,
2022-10-15 18:24:18 -04:00
} ,
//####################################################//
2021-05-15 12:32:49 -04:00
dynu : {
2021-10-07 11:39:18 -04:00
display _name : 'Dynu' ,
package _name : 'certbot-dns-dynu' ,
version _requirement : '~=0.0.1' ,
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : 'dns_dynu_auth_token = YOUR_DYNU_AUTH_TOKEN' ,
full _plugin _name : 'dns-dynu' ,
2021-05-15 12:32:49 -04:00
} ,
//####################################################//
2021-05-09 15:36:52 -04:00
eurodns : {
2021-10-07 11:39:18 -04:00
display _name : 'EuroDNS' ,
package _name : 'certbot-dns-eurodns' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.0.4' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` dns_eurodns_applicationId = myuser
2021-05-09 15:36:52 -04:00
dns _eurodns _apiKey = mysecretpassword
dns _eurodns _endpoint = https : //rest-api.eurodns.com/user-api-gateway/proxy`,
2021-10-20 12:16:54 -04:00
full _plugin _name : 'dns-eurodns' ,
2021-05-09 15:36:52 -04:00
} ,
//####################################################//
2021-01-05 12:19:27 -05:00
gandi : {
2021-10-07 11:39:18 -04:00
display _name : 'Gandi Live DNS' ,
package _name : 'certbot_plugin_gandi' ,
2021-10-20 12:16:54 -04:00
version _requirement : '~=1.3.2' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` # live dns v5 api key
2021-10-20 12:38:21 -04:00
dns _gandi _api _key = APIKEY
# optional organization id , remove it if not used
dns _gandi _sharing _id = SHARINGID ` ,
full _plugin _name : 'dns-gandi' ,
2021-01-05 11:36:47 -05:00
} ,
//####################################################//
2021-05-12 10:28:09 -04:00
godaddy : {
2021-10-07 11:39:18 -04:00
display _name : 'GoDaddy' ,
package _name : 'certbot-dns-godaddy' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.2.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` dns_godaddy_secret = 0123456789abcdef0123456789abcdef01234567
2021-05-12 10:28:09 -04:00
dns _godaddy _key = abcdef0123456789abcdef01234567abcdef0123 ` ,
full _plugin _name : 'dns-godaddy' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
google : {
2021-12-29 03:54:59 -05:00
display _name : 'Google' ,
package _name : 'certbot-dns-google' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` {
2020-11-03 16:24:03 -05:00
"type" : "service_account" ,
...
2020-10-04 17:56:02 -04:00
} ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-google' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
hetzner : {
2021-10-07 11:39:18 -04:00
display _name : 'Hetzner' ,
package _name : 'certbot-dns-hetzner' ,
version _requirement : '~=1.0.4' ,
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : 'dns_hetzner_api_token = 0123456789abcdef0123456789abcdef' ,
full _plugin _name : 'dns-hetzner' ,
2020-10-14 20:33:51 -04:00
} ,
2021-06-03 13:35:30 -04:00
//####################################################//
infomaniak : {
2021-10-07 11:39:18 -04:00
display _name : 'Infomaniak' ,
package _name : 'certbot-dns-infomaniak' ,
version _requirement : '~=0.1.12' ,
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : 'dns_infomaniak_token = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' ,
full _plugin _name : 'dns-infomaniak' ,
2021-06-03 13:35:30 -04:00
} ,
2020-10-14 20:33:51 -04:00
//####################################################//
inwx : {
2021-10-07 11:39:18 -04:00
display _name : 'INWX' ,
package _name : 'certbot-dns-inwx' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=2.1.2' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_inwx_url = https://api.domrobot.com/xmlrpc/
dns _inwx _username = your _username
dns _inwx _password = your _password
dns _inwx _shared _secret = your _shared _secret optional ` ,
full _plugin _name : 'dns-inwx' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-06-03 13:35:30 -04:00
ionos : {
2021-10-07 11:39:18 -04:00
display _name : 'IONOS' ,
package _name : 'certbot-dns-ionos' ,
2021-10-20 12:08:11 -04:00
version _requirement : '==2021.9.20.post1' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:08:11 -04:00
credentials : ` dns_ionos_prefix = myapikeyprefix
dns _ionos _secret = verysecureapikeysecret
dns _ionos _endpoint = https : //api.hosting.ionos.com`,
full _plugin _name : 'dns-ionos' ,
2021-06-03 13:35:30 -04:00
} ,
2021-06-03 12:33:33 -04:00
//####################################################//
2020-10-14 20:33:51 -04:00
ispconfig : {
2021-10-07 11:39:18 -04:00
display _name : 'ISPConfig' ,
package _name : 'certbot-dns-ispconfig' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.2.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_ispconfig_username = myremoteuser
dns _ispconfig _password = verysecureremoteuserpassword
dns _ispconfig _endpoint = https : //localhost:8080`,
full _plugin _name : 'dns-ispconfig' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
isset : {
2021-10-07 11:39:18 -04:00
display _name : 'Isset' ,
package _name : 'certbot-dns-isset' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.0.3' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_isset_endpoint="https://customer.isset.net/api"
dns _isset _token = "<token>" ` ,
full _plugin _name : 'dns-isset' ,
2020-10-14 20:33:51 -04:00
} ,
2021-07-07 03:49:30 -04:00
joker : {
2021-10-07 11:39:18 -04:00
display _name : 'Joker' ,
package _name : 'certbot-dns-joker' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=1.1.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_joker_username = <Dynamic DNS Authentication Username>
dns _joker _password = < Dynamic DNS Authentication Password >
dns _joker _domain = < Dynamic DNS Domain > ` ,
full _plugin _name : 'dns-joker' ,
2021-07-07 03:49:30 -04:00
} ,
2020-10-14 20:33:51 -04:00
//####################################################//
linode : {
2021-12-29 03:54:59 -05:00
display _name : 'Linode' ,
package _name : 'certbot-dns-linode' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` dns_linode_key = 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ64
2020-10-04 17:56:02 -04:00
dns _linode _version = [ < blank > | 3 | 4 ] ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-linode' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-06-30 08:11:58 -04:00
loopia : {
2021-10-07 11:39:18 -04:00
display _name : 'Loopia' ,
package _name : 'certbot-dns-loopia' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=1.0.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` dns_loopia_user = user@loopiaapi
2021-06-30 08:11:58 -04:00
dns _loopia _password = abcdef0123456789abcdef01234567abcdef0123 ` ,
full _plugin _name : 'dns-loopia' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
luadns : {
2021-12-29 03:54:59 -05:00
display _name : 'LuaDNS' ,
package _name : 'certbot-dns-luadns' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` dns_luadns_email = user@example.com
2020-10-04 17:56:02 -04:00
dns _luadns _token = 0123456789 abcdef0123456789abcdef ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-luadns' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2022-10-08 15:53:34 -04:00
namecheap : {
display _name : 'Namecheap' ,
package _name : 'certbot-dns-namecheap' ,
version _requirement : '~=1.0.0' ,
dependencies : '' ,
credentials : ` dns_namecheap_username = 123456
dns _namecheap _api _key = 0123456789 abcdef0123456789abcdef01234567 ` ,
full _plugin _name : 'dns-namecheap' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
netcup : {
2021-10-07 11:39:18 -04:00
display _name : 'netcup' ,
package _name : 'certbot-dns-netcup' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=1.0.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_netcup_customer_id = 123456
dns _netcup _api _key = 0123456789 abcdef0123456789abcdef01234567
dns _netcup _api _password = abcdef0123456789abcdef01234567abcdef0123 ` ,
full _plugin _name : 'dns-netcup' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
njalla : {
2021-10-07 11:39:18 -04:00
display _name : 'Njalla' ,
package _name : 'certbot-dns-njalla' ,
version _requirement : '~=1.0.0' ,
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : 'dns_njalla_token = 0123456789abcdef0123456789abcdef01234567' ,
full _plugin _name : 'dns-njalla' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
nsone : {
2021-12-29 03:54:59 -05:00
display _name : 'NS1' ,
package _name : 'certbot-dns-nsone' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : 'dns_nsone_api_key = MDAwMDAwMDAwMDAwMDAw' ,
full _plugin _name : 'dns-nsone' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-10-09 17:29:25 -04:00
oci : {
display _name : 'Oracle Cloud Infrastructure DNS' ,
package _name : 'certbot-dns-oci' ,
package _version : '0.3.6' ,
dependencies : 'oci' ,
credentials : ` [DEFAULT]
user = ocid1 . user . oc1 ...
fingerprint = xx : xx : xx : xx : xx : xx : xx : xx : xx : xx : xx : xx : xx
tenancy = ocid1 . tenancy . oc1 ...
region = us - ashburn - 1
key _file = ~ / . o c i / o c i _ a p i _ k e y . p e m ` ,
full _plugin _name : 'dns-oci' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
ovh : {
2021-12-29 03:54:59 -05:00
display _name : 'OVH' ,
package _name : 'certbot-dns-ovh' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` dns_ovh_endpoint = ovh-eu
2020-10-04 17:56:02 -04:00
dns _ovh _application _key = MDAwMDAwMDAwMDAw
dns _ovh _application _secret = MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw
dns _ovh _consumer _key = MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-ovh' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-05-15 12:31:33 -04:00
porkbun : {
2021-10-07 11:39:18 -04:00
display _name : 'Porkbun' ,
package _name : 'certbot-dns-porkbun' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.2' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` dns_porkbun_key=your-porkbun-api-key
2021-05-15 12:31:33 -04:00
dns _porkbun _secret = your - porkbun - api - secret ` ,
full _plugin _name : 'dns-porkbun' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
powerdns : {
2021-10-07 11:39:18 -04:00
display _name : 'PowerDNS' ,
package _name : 'certbot-dns-powerdns' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=0.2.0' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_powerdns_api_url = https://api.mypowerdns.example.org
dns _powerdns _api _key = AbCbASsd ! @ 34 ` ,
full _plugin _name : 'dns-powerdns' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-05-09 13:45:42 -04:00
regru : {
2021-10-07 11:39:18 -04:00
display _name : 'reg.ru' ,
package _name : 'certbot-regru' ,
2021-10-07 11:13:48 -04:00
version _requirement : '~=1.0.2' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
credentials : ` certbot_regru:dns_username=username
2021-05-09 13:45:42 -04:00
certbot _regru : dns _password = password ` ,
full _plugin _name : 'certbot-regru:dns' ,
} ,
//####################################################//
2020-10-14 20:33:51 -04:00
rfc2136 : {
2021-12-29 03:54:59 -05:00
display _name : 'RFC 2136' ,
package _name : 'certbot-dns-rfc2136' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` # Target DNS server
2020-10-04 17:56:02 -04:00
dns _rfc2136 _server = 192.0 . 2.1
# Target DNS port
dns _rfc2136 _port = 53
# TSIG key name
dns _rfc2136 _name = keyname .
# TSIG key secret
dns _rfc2136 _secret = 4 q4wM / 2 I180UXoMyN4INVhJNi8V9BCV + jMw2mXgZw / CSuxUT8C7NKKFs AmKd7ak51vWKgSl12ib86oQRPkpDjg ==
# TSIG key algorithm
dns _rfc2136 _algorithm = HMAC - SHA512 ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-rfc2136' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
route53 : {
2021-12-29 03:54:59 -05:00
display _name : 'Route 53 (Amazon)' ,
package _name : 'certbot-dns-route53' ,
version _requirement : '==$(certbot --version | grep -Eo \'[0-9](\\.[0-9]+)+\')' , // official plugin, use certbot version
dependencies : '' ,
credentials : ` [default]
2020-10-14 03:20:52 -04:00
aws _access _key _id = AKIAIOSFODNN7EXAMPLE
aws _secret _access _key = wJalrXUtnFEMI / K7MDENG / bPxRfiCYEXAMPLEKEY ` ,
2020-11-03 16:38:09 -05:00
full _plugin _name : 'dns-route53' ,
2020-10-14 20:33:51 -04:00
} ,
//####################################################//
2021-03-11 07:33:42 -05:00
transip : {
2021-10-07 11:39:18 -04:00
display _name : 'TransIP' ,
package _name : 'certbot-dns-transip' ,
2022-01-18 16:36:49 -05:00
version _requirement : '~=0.4.3' ,
2021-10-07 11:39:18 -04:00
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : ` dns_transip_username = my_username
dns _transip _key _file = / e t c / l e t s e n c r y p t / t r a n s i p - r s a . k e y ` ,
full _plugin _name : 'dns-transip' ,
2021-03-16 07:57:26 -04:00
} ,
2021-03-16 05:49:27 -04:00
//####################################################//
2022-01-01 11:57:17 -05:00
tencentcloud : {
display _name : 'Tencent Cloud' ,
package _name : 'certbot-dns-tencentcloud' ,
version _requirement : '~=2.0.0' ,
dependencies : '' ,
credentials : ` dns_tencentcloud_secret_id = TENCENT_CLOUD_SECRET_ID
dns _tencentcloud _secret _key = TENCENT _CLOUD _SECRET _KEY ` ,
full _plugin _name : 'dns-tencentcloud' ,
} ,
//####################################################//
2021-05-09 15:36:52 -04:00
vultr : {
2021-10-07 11:39:18 -04:00
display _name : 'Vultr' ,
package _name : 'certbot-dns-vultr' ,
version _requirement : '~=1.0.3' ,
dependencies : '' ,
2021-10-20 12:16:54 -04:00
credentials : 'dns_vultr_key = YOUR_VULTR_API_KEY' ,
full _plugin _name : 'dns-vultr' ,
2021-08-08 12:34:22 -04:00
} ,
2021-10-24 16:14:59 -04:00
//####################################################//
websupportsk : {
display _name : 'Websupport.sk' ,
package _name : 'certbot-dns-websupportsk' ,
version _requirement : '~=0.1.6' ,
dependencies : '' ,
credentials : ` dns_websupportsk_api_key = <api_key>
dns _websupportsk _secret = < secret >
dns _websupportsk _domain = example . com ` ,
full _plugin _name : 'dns-websupportsk' ,
} ,
2020-11-22 03:08:56 -05:00
} ;