From 8fdbce7fb4371cc2c1319ba61b05056ec1c05385 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Tue, 24 Mar 2026 07:38:36 +0100 Subject: [PATCH] update: make CA_DIR, CA_NAME, and STORAGE_ACCOUNT_NAME configurable --- make-cert.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make-cert.sh b/make-cert.sh index 49e6679..c89855b 100755 --- a/make-cert.sh +++ b/make-cert.sh @@ -5,9 +5,9 @@ # For more sophisticated certificate management, consider using Simple CA project # from: https://gitea.koszewscy.waw.pl/slawek/simple-ca.git -CA_DIR="./ca" -CA_NAME="Azurite Emulator CA" -STORAGE_ACCOUNT_NAME="azuritelocal" +CA_DIR="${CA_DIR:-./ca}" +CA_NAME="${CA_NAME:-Azurite Emulator CA}" +STORAGE_ACCOUNT_NAME="${STORAGE_ACCOUNT_NAME:-azuritelocal}" openssl req \ -x509 -noenc -text \ -newkey rsa:4096 \