Adding a secret to Azure KeyVault

Why? A secret store is useless unless there are secrets to store. What? Powershell will be used to import a secret into Azure KeyVault. How? Figure 1: Adding a secret to Azure KeyVault [1]. $password = ConvertTo-SecureString -String [password] -AsPlainText -Force $key = Add-AzureKeyVaultKey ` -VaultName ‘[vault name]’ ` -Name ‘[key name]’ ` -KeyFilePath ‘[path to PFX …

Exit mobile version