From 54fa223a4d8957963619e969a4edeb9aa3c30911 Mon Sep 17 00:00:00 2001 From: jens Date: Sun, 13 Sep 2020 14:09:22 +0000 Subject: [PATCH] Update 'certbot_dns_transip/dns_transip.py' --- certbot_dns_transip/dns_transip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot_dns_transip/dns_transip.py b/certbot_dns_transip/dns_transip.py index 81c1bf8..05e4687 100644 --- a/certbot_dns_transip/dns_transip.py +++ b/certbot_dns_transip/dns_transip.py @@ -41,7 +41,7 @@ class Authenticator(dns_common.DNSAuthenticator): "transip credentials INI file", { "username": "Username for transip Remote API.", - "api-key": "Password for transip Remote API.", + "api-key-file": "Password for transip Remote API.", }, ) @@ -67,5 +67,5 @@ class Authenticator(dns_common.DNSAuthenticator): def _get_transip_client(self): return DomainService( self.credentials.conf("username"), - self.credentials.conf("api-key"), + private_key_file=self.credentials.conf("api-key-file"), )