Creating Azure Key Vault on Windows

  1. Open the command line interpreter and log in with the following command:

›_ Console

> az login

image-20260630-133601.png


Azure login

  1. To create an Azure Key Vault, you will need to create a resource group. Use the following command to create your own resource group.

›_ Console

> az group create --location "<location>" --name "<resource_group>"

image-20260630-125625.png


Creating resource group

For more information regarding the commands and command parameters, please check the Microsoft Azure CLI documentation.

  1. Create an Azure Key Vault with premium SKU.

›_ Console

> az keyvault create --location "<location>" --name "<keyvault>"

--resource-group "<resource_group>" --sku premium

image-20260629-152041.png

Creating Azure Key Vault