mirror of https://github.com/dapr/docs.git
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:
parent
3805c32f11
commit
3041c97e5d
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue