Reputation: 37
Is it possible to change only the password in a Key Vault I created with PowerShell and resides in Azure? I found this thread but unsure if this is the answer:
Azure Key Vault - How to update the secrets
Want to know for sure before I start fiddeling around. It would be nice to be able to change password and not removing the whole KeyVault. Thanks!
Upvotes: 0
Views: 1768
Reputation: 4099
You can update the secret of the keyvault with Update-AzureKeyVaultSecret
, do note that you need to have Azure RM Powershell 6.8.1
. It's not available on older versions.
Refer documentation
To check the version of AzureRM that is installed run this
Get-InstalledModule -Name AzureRm
Upvotes: 1