You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A nice improvement I think would be allow the crudRepository to use SecretDocument directly so you can do the custom transformations as needed.
Currently if you use a class that extends SecretDocument and then do CrudRepository<ExtendedSecretDocument, String> the transformations treat it as a regular class and not the final SecretDocument to be sent to vault
Probably it would be the easiest to copy all values from a SecretDocument in MappingVaultConverter upon read/write. Do you want to explore such an approach?
Consider a Java class with
Private String connectionUrl
And in vault you want to store it as
connection.url
How can this be done using CrudRepository?
Thanks
The text was updated successfully, but these errors were encountered: