missing '-o json' on bash command in step 5

This command will fail as is if az is not setup to output json as default.
This commit is contained in:
Alexandre Delarue 2020-04-21 17:11:03 -07:00 committed by GitHub
parent 3805c32f11
commit 3041c97e5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ This document shows how to enable Azure Key Vault secret store using [Dapr Secre
5. Assign the Managed Identity Operator role to the AKS Service Principal
```bash
$aks = az aks show -g [your resource group] -n [your AKS name] | ConvertFrom-Json
$aks = az aks show -g [your resource group] -n [your AKS name] -o json | ConvertFrom-Json
az role assignment create --role "Managed Identity Operator" --assignee $aks.servicePrincipalProfile.clientId --scope $identity.id
```