From 837812f0040cac01ce6bec5bafe503ab3cfcf7e7 Mon Sep 17 00:00:00 2001 From: Simon Emms Date: Tue, 5 Oct 2021 14:38:46 +0100 Subject: [PATCH] fix(setup): set STORAGE_ACCOUNT_NAME variable in storage creation --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 170211b..e83f90a 100755 --- a/setup.sh +++ b/setup.sh @@ -399,7 +399,7 @@ function setup_storage() { az storage account create \ --access-tier Hot \ --kind StorageV2 \ - --name "${1}" \ + --name "${STORAGE_ACCOUNT_NAME}" \ --resource-group "${RESOURCE_GROUP}" \ --sku Standard_LRS fi