Virtualization, Cloud, Infrastructure and all that stuff in-between

My ramblings on the stuff that holds it all together

Convert Azure Key Vault from Standard to Premium

Had to do this earlier, I’d accidentally created a standard AKV instance and I wanted to make it premium to benefit from hardware backed key storage (required for a project I’m building), the az cli command to do this is as follows:

az keyvault update –set properties.sku.name=premium –name “YourAKVName” –resource-group “YourResourceGroup”

Leave a comment