HI ,
I am looking to migrate a secrets from Azure KV to Hashicorp vault is there any best ways to migrate a secrets into vault can you provide any suggestion or solution
HI ,
I am looking to migrate a secrets from Azure KV to Hashicorp vault is there any best ways to migrate a secrets into vault can you provide any suggestion or solution
I believe the normal way to do this would be to write your own custom code to do it, since both Vault has an API, and I assume Azure has an API, and any mapping from one to the other would usually require applying some custom business logic unique to your application.
Thanks For Reply maxb , i am try to store a secret after creating a mountpoint but facing issue invalid path these is the write way to give the path trough powershell
$vault = Get-Vault -Address “url” -Token “password”
Set-Secret -VaultObject $vault -Path secret/test -Secret @{value=“secret”}