Created on 06-17-2019 05:40 AM - edited 09-16-2022 07:27 AM
I'm testing Hue - SAML integration.
SAML login now works, but all users land in Hue with "default" group.
Is there a way to assign Hue groups and permissions based on SAML attributes?
Created 06-18-2019 11:37 AM
Right, so SAML can be used for Authentication and then LDAP for user/group sync.
If you are not using LDAP for authentication, then "Create LDAP users on login" won't impact you.
If you want to prevent the creation of a Hue user for a new user login, you can set the following:
[libsaml]
create_users_on_login=False
If you do that, though, you need to be sure that you have all of your users already in Hue before they authenticate; otherwise, they will get an error.
If you would like to leave create_users_on_login "True" but change the default group membership, you can adjust the "default" group that is set for new users.
To do so, set:
[useradmin]
default_user_group=<name_of_your_preferred_group>
That way, you don't prevent users from authenticating via SAML if they don't already exist as Hue users, but you can restrict the resources they can access.
It's just another thing to consider that may help you achieve the type of configuration you want.
Created 06-17-2019 11:34 AM
Hi @MichalAR ,
Hue does not support group mapping based on SAML attributes at this time.
For now, the general workaround is to use LDAP sync if possible to automate user group membership.
Created 06-18-2019 02:16 AM
Hi @bgooley ,
So I can have SAML login + ldap group synch?
I assume "Create LDAP users on login" should be disabled in that case?
Created 06-18-2019 11:37 AM
Right, so SAML can be used for Authentication and then LDAP for user/group sync.
If you are not using LDAP for authentication, then "Create LDAP users on login" won't impact you.
If you want to prevent the creation of a Hue user for a new user login, you can set the following:
[libsaml]
create_users_on_login=False
If you do that, though, you need to be sure that you have all of your users already in Hue before they authenticate; otherwise, they will get an error.
If you would like to leave create_users_on_login "True" but change the default group membership, you can adjust the "default" group that is set for new users.
To do so, set:
[useradmin]
default_user_group=<name_of_your_preferred_group>
That way, you don't prevent users from authenticating via SAML if they don't already exist as Hue users, but you can restrict the resources they can access.
It's just another thing to consider that may help you achieve the type of configuration you want.