Hi Matthew,
When creating the Key Vault for the exercise, you may use command similar to below instead of what is shown in exercise (substitute correct resource group name):
az keyvault create --name $keyVaultName --location eastus --resource-group myResourceGroup --enabled-for-template-deployment true --enable-rbac-authorization false
This will create the Key Vault with permission model set to Vault access policy and grant your user account permission to perform necessary operations.
You should be able to run the other commands (az keyvault secret set
) as shown in the exercise.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP