-
Notifications
You must be signed in to change notification settings - Fork 2
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
[Proposal 005] Node Authorization #8
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Tani <[email protected]>
accepted/005-node-authentication.md
Outdated
@@ -0,0 +1,71 @@ | |||
# Design / Feature | |||
|
|||
*TODO for the document:* |
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 should include a section about observability here.
Signed-off-by: Tani <[email protected]>
Signed-off-by: Tani <[email protected]>
|
||
Authorization decisions default to deny. | ||
|
||
Not installing a policy engine causes all requests to be denied. |
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.
We must must have "reasonable defaults" and opinions. Its a key part of the project.
Is this our reasonable default? Or should we give the user a default policy engine?
- changes to the policy do not require a recompilation of auraed. | ||
- policy can be centralized for multiple auraed. | ||
|
||
### Goals |
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.
We will need to bake both authn and authz into our standard library, or at the very least call it out of scope.
- Do we have an authn subsystem? Or is this "transparent" based on the
aurae.toml
? - Do we have an authz subsystem? Or is this "transparent" based on the
aurae.toml
?
More on subsystems: https://github.com/aurae-runtime/api/tree/main/spec#aurae-api-specification
Signed-off-by: Tani [email protected]