Fix formatting issues

This commit is contained in:
Antony Jones 2018-02-19 13:07:03 +00:00 committed by GitHub
parent 21b141e526
commit c973dd91c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ $ azure account show --json | jq -r ".[] | .id"
``` ```
Python: Python:
```shell ``` shell
$ az account set "$(az account list | jq -r '.[].name')" $ az account set "$(az account list | jq -r '.[].name')"
``` ```
@ -214,7 +214,7 @@ Python:
```shell ```shell
$ id=$(az ad app list | jq -r '.[] | select(.displayName == "Packer") | .appId') $ id=$(az ad app list | jq -r '.[] | select(.displayName == "Packer") | .appId')
$ az ad sp create --appid "$id" $ az ad sp create --id "$id"
``` ```
### Grant Permissions to Your Application ### Grant Permissions to Your Application