How to use certbot-dns-ovh - 3 common examples

To help you get started, we’ve selected a few certbot-dns-ovh 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-ovh / certbot_dns_ovh / _internal / dns_ovh.py View on Github external
def _get_ovh_client(self):
        return _OVHLexiconClient(
            self.credentials.conf('endpoint'),
            self.credentials.conf('application-key'),
            self.credentials.conf('application-secret'),
            self.credentials.conf('consumer-key'),
            self.ttl
        )
github certbot / certbot / certbot-dns-ovh / certbot_dns_ovh / _internal / dns_ovh.py View on Github external
def _handle_general_error(self, e, domain_name):
        if domain_name in str(e) and str(e).endswith('not found'):
            return

        super(_OVHLexiconClient, self)._handle_general_error(e, domain_name)
github certbot / certbot / certbot-dns-ovh / certbot_dns_ovh / _internal / dns_ovh.py View on Github external
def add_parser_arguments(cls, add):  # pylint: disable=arguments-differ
        super(Authenticator, cls).add_parser_arguments(add, default_propagation_seconds=30)
        add('credentials', help='OVH credentials INI file.')

certbot-dns-ovh

OVH DNS Authenticator plugin for Certbot

Apache-2.0
Latest version published 20 days ago

Package Health Score

90 / 100
Full package analysis

Similar packages