From 0f4cba9c82df4276e94294b9049eef47dea44e3a Mon Sep 17 00:00:00 2001 From: Mark Turner Date: Sat, 10 Sep 2016 17:33:20 +0100 Subject: [PATCH 1/2] Added quotes to JQ line when getting Azure accounts --- website/source/docs/builders/azure-setup.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/builders/azure-setup.html.md b/website/source/docs/builders/azure-setup.html.md index 5436b108d..964fb97e2 100644 --- a/website/source/docs/builders/azure-setup.html.md +++ b/website/source/docs/builders/azure-setup.html.md @@ -68,7 +68,7 @@ Login using the Azure CLI Get your account information - azure account list --json | jq .[].name + azure account list --json | jq '.[].name' azure account set ACCOUNTNAME azure account show --json | jq ".[] | .id" From de35df833b024aaf940714054858df6498fe442f Mon Sep 17 00:00:00 2001 From: Mark Turner Date: Sat, 10 Sep 2016 17:44:13 +0100 Subject: [PATCH 2/2] Fixed azure storage command example to include sku-name and kind --- website/source/docs/builders/azure-setup.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/builders/azure-setup.html.md b/website/source/docs/builders/azure-setup.html.md index 964fb97e2..7607be6f8 100644 --- a/website/source/docs/builders/azure-setup.html.md +++ b/website/source/docs/builders/azure-setup.html.md @@ -95,7 +95,7 @@ Your storage account (below) will need to use the same `GROUPNAME` and `LOCATION We will need to create a storage account where your Packer artifacts will be stored. We will create a `LRS` storage account which is the least expensive price/GB at the time of writing. azure storage account create -g GROUPNAME \ - -l LOCATION --type LRS STORAGENAME + -l LOCATION --sku-name LRS --kind storage STORAGENAME -> `LRS` is meant as a literal "LRS" and not as a variable.