Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to export vault secrets as zip file

Is there a way to export vault secret data from one vault instance, and then import to another vault instance?

Example: Export secrets from the source instance with the path secret/vault/path and import to the destination empty vault instance.

like image 745
Mr ASD Avatar asked Dec 13 '22 12:12

Mr ASD


1 Answers

I am not aware of a 'native' way to do this. You will need to iterate over the requested secrets and export them to file (and import them in the same way).

You can try to use one of the following projects that attempt to do it:

Vault backup

Vault backup migrator

like image 99
Amityo Avatar answered Feb 28 '23 07:02

Amityo