The email+app_password -> /api/v1/auth/login bearer mint was retired with personal app passwords (dns commit 834c90e). Switch to sending a yeil App key (yk_<keyId>_<secret>) directly as the Bearer token, which the DNS API's principal auth accepts. Single credential 'dns_yeil_api_key'; removed the login round-trip. BREAKING: existing credential files must replace email/app_password with an api_key (an App with DNS record-write permission, minted in team Apps). README + version bumped. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
503 B
Python
21 lines
503 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="certbot-dns-yeil",
|
|
version="3.0.0",
|
|
description="yeil DNS Authenticator plugin for Certbot",
|
|
url="https://git.eskimo.dev/Yeil/certbot-dns-yeil",
|
|
author="yeil",
|
|
license="MIT",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"certbot>=1.1.0",
|
|
"zope.interface",
|
|
],
|
|
entry_points={
|
|
"certbot.plugins": [
|
|
"dns-yeil = certbot_dns_yeil.dns_yeil:Authenticator",
|
|
],
|
|
},
|
|
)
|