Creating Azure Key Vault on Linux

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

›_ Console

# az login

tmpe96rbe9z.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>"

tmp2u86bctj.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

tmp4dyjhw_9.jpg

Creating Azure Key Vault