Generating Azure Key Vault

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

    ›_ Console

    > az login
    
  2. To create the Azure Key Vault, you will need to create a resource group. Please use the following command to create your own resource group.

    ›_ Console

    > az group create --location "<location>" --name "<resource_group>"
    
  3. Create an Azure Key Vault with premium SKU.

    ›_ Console

    > az keyvault create --location "<location>" --name "<keyvault>" 
    
        --resource-group "<resource_group>" --sku premium
    

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