From 5f26cac3734cba94da2d0d4df0a1ac8ab53adee3 Mon Sep 17 00:00:00 2001 From: Gabriel Weyer Date: Sat, 11 Jul 2015 14:40:05 +1000 Subject: [PATCH] Stop prompting for storage account type `--type` is a mandatory parameter when creating a storage account, I used the cheapest one (Locally Redundant Storage). More details about the different types of storage can be found [https://azure.microsoft.com/en-us/documentation/articles/storage-introduction/#replication-for-durability-and-high-availability](here) --- cluster/azure/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/azure/util.sh b/cluster/azure/util.sh index df1a1083fa2..1419e2e72dd 100644 --- a/cluster/azure/util.sh +++ b/cluster/azure/util.sh @@ -150,7 +150,7 @@ function upload-server-tars() { if [[ -z "$(azure_call storage account show $AZ_STG 2>/dev/null | \ grep data)" ]]; then echo "--> Creating storage..." - azure_call storage account create -l "$AZ_LOCATION" $AZ_STG + azure_call storage account create -l "$AZ_LOCATION" $AZ_STG --type LRS fi echo "--> Getting storage key..."