We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ACL tests is a tailscale feature that allows ACL creators to do a sanity check on an ACL. It is a quality of life feature for access management.
tests
// in ACL.hujson { // ... other config "tests": [ { "src": "alice-pc", "proto": "tcp", "accept": [ "jump-server:22", "tag:printer:80" ], "deny": [ "bob-laptop:443" ], }, ], }
Headscale currently parses but ignores ACL tests in an ACL config hujson or yaml file.
Implement ACL testing as described in tailscale's KB. Note that the struct ACLTest misses some fields as defined by tailscale.
ACLTest
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open for 90 days with no activity.
Sorry, something went wrong.
This issue was closed because it has been inactive for 14 days since being marked as stale.
No branches or pull requests
Why
ACL
tests
is a tailscale feature that allows ACL creators to do a sanity check on an ACL. It is a quality of life feature for access management.Headscale currently parses but ignores ACL tests in an ACL config hujson or yaml file.
Description
Implement ACL testing as described in tailscale's KB. Note that the struct
ACLTest
misses some fields as defined by tailscale.The text was updated successfully, but these errors were encountered: