Filtering groups (filterGroupsRegex
) and RBAC
#13721
-
Hi - We've configured SSO and trying to restrict access using Filtering groups ( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Looking at the code of #11774, specifically this block: argo-workflows/server/auth/sso/sso.go Line 300 in bf7760a it doesn't seem like it should be RBAC specific. I would double-check that your Argo version is compatible. |
Beta Was this translation helpful? Give feedback.
That would mean it's working as intended. Only the filtered group is showing up and is stored in the cookie.
I think you've misunderstood the purpose of the filter. It does not control permissions, that is what RBAC is for. SSO without RBAC means that anyone who can login to your SSO provider has access. Effectively it is authN without authZ. There is no check for groups or anything what-so-ever without RBAC.
The filter, per the…