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

Added rfc2136_sign_query to dns-rfc2136 provider #3866

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions letsencrypt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 5.2.11

- Add rfc2136_sign_query parameter to config.yaml

## 5.2.10

- Add transip global_key parameter to config.yaml
Expand Down
3 changes: 3 additions & 0 deletions letsencrypt/DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ rfc2136_port: ''
rfc2136_name: ''
rfc2136_secret: ''
rfc2136_algorithm: ''
rfc2136_sign_query: ''
nordeep marked this conversation as resolved.
Show resolved Hide resolved
aws_access_key_id: ''
aws_secret_access_key: ''
sakuracloud_api_token: ''
Expand Down Expand Up @@ -782,6 +783,8 @@ An example configuration:
rfc2136_name: letsencrypt
rfc2136_secret: "secret-key"
rfc2136_algorithm: HMAC-SHA512
# Optional: Enable TSIG key signing for DNS queries (useful for BIND multiple views)
rfc2136_sign_query: true
```

</details>
Expand Down
3 changes: 2 additions & 1 deletion letsencrypt/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 5.2.10
version: 5.2.11
slug: letsencrypt
name: Let's Encrypt
description: Manage certificate from Let's Encrypt
Expand Down Expand Up @@ -116,6 +116,7 @@ schema:
rfc2136_port: str?
rfc2136_secret: str?
rfc2136_server: str?
rfc2136_sign_query: bool
sakuracloud_api_secret: str?
sakuracloud_api_token: str?
transip_api_key: str?
Expand Down
1 change: 1 addition & 0 deletions letsencrypt/rootfs/etc/cont-init.d/file-structure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ echo -e "dns_desec_token = $(bashio::config 'dns.desec_token')\n" \
"dns_rfc2136_name = $(bashio::config 'dns.rfc2136_name')\n" \
"dns_rfc2136_secret = $(bashio::config 'dns.rfc2136_secret')\n" \
"dns_rfc2136_algorithm = $(bashio::config 'dns.rfc2136_algorithm')\n" \
"dns_rfc2136_sign_query = $(bashio::config 'dns.rfc2136_sign_query')\n" \
"aws_access_key_id = $(bashio::config 'dns.aws_access_key_id')\n" \
"aws_secret_access_key = $(bashio::config 'dns.aws_secret_access_key')\n" \
"dns_sakuracloud_api_token = $(bashio::config 'dns.sakuracloud_api_token')\n" \
Expand Down