remove certbot_dns_route53.authenticator (#10014)

This is another and very minor piece of https://github.com/certbot/certbot/issues/9988.

We've done nothing to warn/migrate installations using the old `certbot-route53:auth` plugin name and installations like that still exist according to https://gist.github.com/bmw/aceb69020dceee50ba827ec17b22e08a. We could try to warn/migrate these users for a future release or decide it's niche enough that we'll just let it break, but I think it's easy enough to keep the simple shim around.

This PR just moves the code raising a deprecation warning into `_internal` as part of cleaning up all deprecation warnings I found in https://github.com/certbot/certbot/issues/9988. I manually tested this with a Certbot config using the `certbot-route53:auth` plugin name and renewal worked just fine.
This commit is contained in:
Brad Warren
2024-09-18 14:07:35 -07:00
committed by GitHub
parent 018800c5cc
commit 4b51e3004c
4 changed files with 14 additions and 18 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ setup(
entry_points={
'certbot.plugins': [
'dns-route53 = certbot_dns_route53._internal.dns_route53:Authenticator',
'certbot-route53:auth = certbot_dns_route53.authenticator:Authenticator'
'certbot-route53:auth = certbot_dns_route53._internal.dns_route53:HiddenAuthenticator',
],
},
)