From e65f0c234728cb172b1d7d5a2eb5e1724d3c3def Mon Sep 17 00:00:00 2001 From: Christopher Boumenot Date: Tue, 28 Jun 2016 23:12:32 +0000 Subject: [PATCH] Update to support azure-cli 0.10.1. Storage creation has changed the command line options. The option -type -type has changed to --sku-name, and the user must specifcy --kind. --- contrib/azure-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/azure-setup.sh b/contrib/azure-setup.sh index 381bb9e7e..c64660a13 100755 --- a/contrib/azure-setup.sh +++ b/contrib/azure-setup.sh @@ -126,7 +126,7 @@ createResourceGroup() { createStorageAccount() { echo "==> Creating storage account" - azure storage account create -g $meta_name -l westus --type LRS $meta_name + azure storage account create -g $meta_name -l westus --sku-name LRS --kind Storage $meta_name if [ $? -eq 0 ]; then azure_storage_name=$meta_name else