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
Posted by on November 30, 2023
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”
