mirror of
https://github.com/certbot/certbot.git
synced 2026-08-04 16:13:23 +02:00
Use certificate instead of cert in DNS plugin descriptions (#4784)
This commit is contained in:
committed by
Brad Warren
parent
89e63eaf84
commit
a926d42bd6
@@ -21,7 +21,8 @@ class Authenticator(dns_common.DNSAuthenticator):
|
|||||||
This Authenticator uses the Cloudflare API to fulfill a dns-01 challenge.
|
This Authenticator uses the Cloudflare API to fulfill a dns-01 challenge.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
description = 'Obtain certs using a DNS TXT record (if you are using Cloudflare for DNS).'
|
description = ('Obtain certificates using a DNS TXT record (if you are using Cloudflare for '
|
||||||
|
'DNS).')
|
||||||
ttl = 120
|
ttl = 120
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ class Authenticator(dns_common.DNSAuthenticator):
|
|||||||
This Authenticator uses the CloudXNS DNS API to fulfill a dns-01 challenge.
|
This Authenticator uses the CloudXNS DNS API to fulfill a dns-01 challenge.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
description = 'Obtain certs using a DNS TXT record (if you are using CloudXNS for DNS).'
|
description = 'Obtain certificates using a DNS TXT record (if you are using CloudXNS for DNS).'
|
||||||
ttl = 60
|
ttl = 60
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ class Authenticator(dns_common.DNSAuthenticator):
|
|||||||
This Authenticator uses the DNSimple v2 API to fulfill a dns-01 challenge.
|
This Authenticator uses the DNSimple v2 API to fulfill a dns-01 challenge.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
description = 'Obtain certs using a DNS TXT record (if you are using DNSimple for DNS).'
|
description = 'Obtain certificates using a DNS TXT record (if you are using DNSimple for DNS).'
|
||||||
ttl = 60
|
ttl = 60
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@@ -25,7 +25,8 @@ class Authenticator(dns_common.DNSAuthenticator):
|
|||||||
This Authenticator uses the Google Cloud DNS API to fulfill a dns-01 challenge.
|
This Authenticator uses the Google Cloud DNS API to fulfill a dns-01 challenge.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
description = 'Obtain certs using a DNS TXT record (if you are using Google Cloud DNS for DNS).'
|
description = ('Obtain certificates using a DNS TXT record (if you are using Google Cloud DNS '
|
||||||
|
'for DNS).')
|
||||||
ttl = 60
|
ttl = 60
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ class Authenticator(dns_common.DNSAuthenticator):
|
|||||||
This Authenticator uses the NS1 API to fulfill a dns-01 challenge.
|
This Authenticator uses the NS1 API to fulfill a dns-01 challenge.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
description = 'Obtain certs using a DNS TXT record (if you are using NS1 for DNS).'
|
description = 'Obtain certificates using a DNS TXT record (if you are using NS1 for DNS).'
|
||||||
ttl = 60
|
ttl = 60
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ class Authenticator(common.Plugin):
|
|||||||
This authenticator solves a DNS01 challenge by uploading the answer to AWS
|
This authenticator solves a DNS01 challenge by uploading the answer to AWS
|
||||||
Route53.
|
Route53.
|
||||||
"""
|
"""
|
||||||
description = "Obtain certs using a DNS TXT record (if you are using AWS Route53 for DNS)."
|
description = "Obtain certificates using a DNS TXT record (if you are using AWS Route53 for DNS)."
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(Authenticator, self).__init__(*args, **kwargs)
|
super(Authenticator, self).__init__(*args, **kwargs)
|
||||||
|
|||||||
Reference in New Issue
Block a user