Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds bunny to approved authenticators #226

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/certbot_authenticators.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ for the supported authenticators:
- [dns-route53][18]
- [dns-sakuracloud][19]
- [dns-ionos][20]
- [dns-bunny][21]

You will need to setup the authenticator file at
`/etc/letsencrypt/<authenticator provider>.ini`, so for e.g. Cloudflare you
Expand Down Expand Up @@ -133,3 +134,4 @@ authenticators.
[18]: https://certbot-dns-route53.readthedocs.io/en/stable/#credentials
[19]: https://certbot-dns-sakuracloud.readthedocs.io/en/stable/#credentials
[20]: https://github.com/helgeerbe/certbot-dns-ionos
[21]: https://github.com/mwt/certbot-dns-bunny
3 changes: 2 additions & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ ENV CERTBOT_DNS_AUTHENTICATORS \
rfc2136 \
route53 \
sakuracloud \
ionos
ionos \
bunny

# Needed in order to install Python packages via PIP after PEP 668 was
# introduced, but I believe this is safe since we are in a container without
Expand Down
3 changes: 2 additions & 1 deletion src/Dockerfile-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ ENV CERTBOT_DNS_AUTHENTICATORS \
rfc2136 \
route53 \
sakuracloud \
ionos
ionos \
bunny

# Do a single run command to make the intermediary containers smaller.
RUN set -ex && \
Expand Down
Loading