From bf374747b13f0118c62343b1f0577a2f76042a05 Mon Sep 17 00:00:00 2001 From: rhartnett-zscaler Date: Mon, 1 Jul 2024 09:25:45 -0700 Subject: [PATCH] fix: fixed BUG-179036 --- examples/zsec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/zsec b/examples/zsec index 64b1539..73b491c 100755 --- a/examples/zsec +++ b/examples/zsec @@ -1000,7 +1000,7 @@ first_run="yes" echo "Terraform will use an existing Storage Account. *Note* - Storage Account must reside in the same Subscription" echo "export TF_VAR_existing_storage_account=true" >> .zsecrc read -r -p "${CYAN}Enter the Name of your existing Storage Account: ${RESET}" existing_storage_account_name - echo "export TF_VAR_existing_storage_account_name =${existing_storage_account_name }" >> .zsecrc + echo "export TF_VAR_existing_storage_account_name=${existing_storage_account_name}" >> .zsecrc read -r -p "${CYAN}Enter the Resource Group of your existing Storage Account: ${RESET}" existing_storage_account_rg echo "export TF_VAR_existing_storage_account_rg=${existing_storage_account_rg}" >> .zsecrc echo "Azure Function App will use Storage Account: $existing_storage_account_name in RG: $existing_storage_account_rg"