Creating Azure Key Vault on Windows

  1. Open the command line interpreter and login with the following command:

›_ Console

> az login

tmp2buafxox.jpg

Azure login

  1. To create the 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>"

tmpykpu41hd.jpg

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

tmp0k8engt_.jpg
tmposcmikj5.jpg

Creating Azure Key Vault