Merge pull request #539 from aldelar/patch-1

missing '-o json' on bash command in step 5
This commit is contained in:
Ori Zohar 2020-04-23 10:37:35 -07:00 committed by GitHub
commit a3b5dab6d1
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
```