Merge pull request #3658 from boumenot/pr-azure-setup-sh

Update to support azure-cli 0.10.1.
This commit is contained in:
Chris Bednarski 2016-06-28 16:23:26 -07:00 committed by GitHub
commit 97b536e5c5
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ createResourceGroup() {
createStorageAccount() { createStorageAccount() {
echo "==> Creating storage account" 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 if [ $? -eq 0 ]; then
azure_storage_name=$meta_name azure_storage_name=$meta_name
else else