How to use certbot-dns-route53 - 2 common examples

To help you get started, we’ve selected a few certbot-dns-route53 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github certbot / certbot / certbot-dns-route53 / certbot_dns_route53 / _internal / dns_route53.py View on Github external
def __init__(self, *args, **kwargs):
        super(Authenticator, self).__init__(*args, **kwargs)
        self.r53 = boto3.client("route53")
        self._resource_records = collections.defaultdict(list) # type: DefaultDict[str, List[Dict[str, str]]]
github certbot / certbot / certbot-dns-route53 / certbot_dns_route53 / authenticator.py View on Github external
def __init__(self, *args, **kwargs):
        warnings.warn("The 'authenticator' module was renamed 'dns_route53'",
                      DeprecationWarning)
        super(Authenticator, self).__init__(*args, **kwargs)

certbot-dns-route53

Route53 DNS Authenticator plugin for Certbot

Apache-2.0
Latest version published 20 days ago

Package Health Score

93 / 100
Full package analysis

Similar packages