Skip to content

Commit 26452ff

Browse files
wip
1 parent a9ce26e commit 26452ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infrastructure/modules/acme-certificate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Terraform module to obtain a publicly trusted SSL certificate from the Let's E
99
- Automates [DNS-01 challenges](https://letsencrypt.org/docs/challenge-types/) via the [Lego azuredns](https://go-acme.github.io/lego/dns/azuredns/) provider.
1010
- Handles Lego's requirement for authoritative NS records on the leaf zone. e.g. if you need a certificate for `www.private.example.com` but only have a zone for `example.com`, you can use CNAME redirection (see examples below).
1111
- CNAME redirection of DNS challenge records, including optional creation of corresponding CNAMEs in Azure Private DNS zones to satisfy Lego's local checks (wildcards supported).
12-
- Stores certificates in Azure Key Vault as Certificate objects.
12+
- Stores created certificate in Azure Key Vault as a Certificate object.
1313
- Also stores the certificate as a `.pfx` file in a base64-encoded Key Vault Secret with a strong randomised password, for compatibility with consumers that cannot use Certificate objects.
1414
- Supports multiple subscriptions (e.g. hub/spoke models).
1515
- Supports multiple Azure regions.

scripts/deployments/get-docker-names.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ done
130130

131131
if [ ${#non_matched_changes[@]} -ne 0 ]; then
132132
# Remove duplicates (non-matched items across several compose files)
133-
unique_changes=("$(printf "%s\n" "${non_matched_changes[@]}" | sort -u)")
133+
mapfile -t unique_changes < <(printf "%s\n" "${non_matched_changes[@]}" | sort -u)
134134

135135
warning_message=$(
136136
cat <<EOF

0 commit comments

Comments
 (0)