There is no support from Azure for Azure Key vault backup(existing options are error prone when it comes to automation). There is soft delete and I can reset passwords and put it back in keyvault, in case something goes wrong. So it seems okay still as an alternative to backup I would like to take a screenshot of the Secret Names (not values) and put that image in storage account. Is this safe? The reason why I do this is because it will be easy to recreate the secrets in case key-vault goes down(.5 % chance).
Keyvault backup not supported
492 Views Asked by Blue Clouds At
2
There are 2 best solutions below
0

Azure Key Vault Backup to another Key Vault using LogicApp
Pre-Requisites
- Enable LogicApp system assigned managed identity.
- Two key vault in same subscription and geography.
- Add LogicApp objectID in key vault access policy with following key and secret permissions,
- backup,list(source key vault)
- restore(destination key vault)
Limitation
- Source and Destination key vault should be in same subscription and geography.
Steps
above steps are same for secrets backup
You can definitely use Soft Delete feature as an alternative. Apart from that, in case KeyVault goes down and you want to recreate the secrets, it's easier and safer to setup ARM template and ADO pipeline to achieve your goal with restricted access to the ADO (only people who are part of your organization in ADO can see the pipeline).
The ARM template for Key Vault looks like this:
The ADO Release pipeline will look like this:
Example build pipeline for .NET core solution repo:
Then, you can use Azure Resource Group Deployment task in your ADO release pipeline.