Member since
12-08-2017
3
Posts
0
Kudos Received
0
Solutions
06-18-2019
11:37 AM
1 Kudo
@MichalAR , 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.
... View more