Skip to main content

Create a Key Vault using PowerShell and add a secret to Key Vault


Create Key Vault using PowerShell New-AzKeyVault

 

$RGName = "test-rg"
$Location = "UK West"
$KVName = "test-829-kv"
 
New-AzKeyVault -Name $KVName -ResourceGroupName $RGName -Location $Location
 

new azkeyvault powershell

Add secret to Key Vault

Key Vault - Secrets - Generate/Import

add secret 

Name: test-secret
Secret value: Enter the password

Click Create

enter secret

Reference:

Quickstart: Create a key vault using PowerShell
https://learn.microsoft.com/en-us/azure/key-vault/general/quick-create-powershell

 


Filter articles by tag