-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kv policy verification #72
Merged
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
e7615c7
Add better auth error propogation from interactor to controller; added
suprjinx 0c2c8c5
Merge branch 'main' of github.com:suprjinx/astral
suprjinx 9793f3f
Merge branch 'main' of github.com:suprjinx/astral
suprjinx a2b6f6a
Merge branch 'main' of github.com:suprjinx/astral
suprjinx 08fa788
Merge branch 'main' of github.com:g-research/astral
suprjinx 88b65d4
Merge branch 'main' of github.com:G-Research/astral
suprjinx d87c082
Merge branch 'main' of github.com:G-Research/astral
suprjinx 06520b5
init
db95882
reorg
abd9816
user_config
8b045ca
removed data
6488ad9
basic policy creation working
04c97b9
Merge branch 'main' of github.com:g-research/astral
suprjinx d426921
removed extraneous policies
20a6504
changed intial email
5eb39f3
moved policy creation
f356d3e
fixed test
72a8bdc
added test
562a907
rubocop
4c4ab8b
removed user_config file
f139d7d
cleanup
52d4dca
Merge branch 'main' of github.com:G-Research/astral
suprjinx cf543b7
add identity to interactor calls
suprjinx cb9c8c4
move policy/entity methods to matching modules
suprjinx aa81e34
Merge branch 'main' of github.com:G-Research/astral
suprjinx bbbba20
Merge branch 'main' into kv_identity
suprjinx 907374e
fix client unit test
suprjinx c8a4301
Simplify policy/entity usage
suprjinx 75051c7
remove config_user from Cert (using assign_policy now); fix test
suprjinx 6189a63
Add test of kv_write; verify policy creation
suprjinx 952e342
add kv_delete test
suprjinx 95c5b7b
PR changes
suprjinx f6b76ab
Merge branch 'main' of github.com:g-research/astral
suprjinx 2a77c25
Merge branch 'main' into kv_identity
suprjinx 2382e25
Add kv-read policy verification
suprjinx 6bf2070
unneeded email var
suprjinx 10fea6a
Add advisory lock to prevent policies race
suprjinx 17cd743
Merge branch 'main' of github.com:G-Research/astral
suprjinx 0902c95
Merge branch 'main' of github.com:suprjinx/astral
suprjinx 792dc28
Merge branch 'main' into kv_identity_verify
suprjinx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is unfortunate that this mechanism isn't provided by vault itself, because this won't prevent another user/app from modifying the entity directly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
out of curiosity, why not just use a ruby mutex: https://ruby-doc.org/core-2.5.1/Mutex.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i tried! but there are apparently multiple instances of the server running, which won't share the mutex attribute.