Replies: 1 comment
-
|
Tagging @Gabrielopesantos... :-) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In project i worked on, I wrote a wrapper around the kv2 secrets to allow the same sort of features of bitwarden - types of secrets, custom properties etc
In this implementation, I stored the non-confidential data in a postgres db so we could quickly search the "metadata" (type, descriptions, names etc) and then return the secret path of the records found. When the user wants to see the actual secret, we then make a simpel call to the secret path. Another reason why we used a db table was that we would have to read every path and secret to get the "tree" which was very slow as you could only retrieve a path at a time
With some of the new features of openbao I was wondering if some of those reasons have become redundant ? For example, could I just read the entire secrets tree from a root ? Can I search for secrets using the metadata ?
Beta Was this translation helpful? Give feedback.
All reactions