Keycloak OpenID Setup
This guide walks through a basic setup allowing Keycloak users to authenticate with your Kasm deployment.
Reference Docs:
Creating a Keycloak OAuth App
Login to the Keycloak portal as an Admin.
Under the the desired realm (e.g Master) , select Realm Settings.
Click OpenID Endpoint Configuration next to Endpoints.
Save off the urls for
authorization_endpoint
,token_endpoint
, anduserinfo_endpoint
. These will be used in future steps.Back in the console, select Clients under the Realm.
Select Create.
Define a Client ID , e.g
kasm-12345
. Selectopenid-connect
for Client Protocol and enter the URL for the Kasm deployment under Root URL (e.ghttps://kasm.example.com
).In the client settings, change Access Type to
confidential
, then slick Save.Select Credentials. Save off the Secret. It will be used in future steps.
In the client settings, select Mappers, then click Create.
Enter
groups
for Name, and select Group Membership from the Mapper Type. Entergroups
for Token Claim Name, then select Save.
Kasm OpenID Config
Log into the Kasm UI as an administrator.
Select Authentication -> OpenID -> Create New Configuration.
Update the form with the following entries, using the Client ID and Client Secret gathered in the previous section.
Property
Value
Display Name
Continue with Keycloak
Logo URL
http://www.keycloak.org/resources/favicon.ico
Enabled
Checked
Auto Login
Unchecked
Hostname
<Empty>
Default
Checked
Client ID
<Client ID from Keycloak>
Client Secret
<Client Secret from Keycloak>
Authorization URL
<authorization_endpoint from the Keycloak configuration>
Token URL
<token_endpoint from the Keycloak configuration>
User Info URL
<userinfo_endpoint from the Keycloak configuration>
Scope
openid
email
profile
Username Attribute
preferred_username
Groups Attribute
groups
Debug
Unchecked
Click Submit to save the changes.
Keycloak Login Test
Logout of the Kasm to display the login screen. The OpenID configuration should be shown.
Click Continue with Keycloak
The user is redirected to Keycloak for auth.
Upon completion, the user is logged into the Kasm app.
Group Mapping
The previous configurations will instruct the identity provider to send a list of Security Group ID the user belongs to during the OpenID auth workflow. We can configure Kasm Groups with the Security Group IDs from Azure AD so that users are automatically added/removed based on their Azure AD group Membership.
Log into the Kasm UI as an administrator.
Select Groups -> Add Group.
Name the Group Group Test, and define a priority.
Click Submit to create the group.
On the groups screen, using the three dot menu select View on the group that was just created.
Scroll to the bottom of the screen and select Add SSO Mapping.
Select the OpenID IDP that was created above “OpenID - Continue with Keycloak” for the SSO Provider.
#. Then enter the Keycloak group name desired in the Group Attributes field, e.g /Kasm-Test
.
Note the slash. This is needed when Full group path is set in the Keycloak Client Mapper which is the default.
Click Add
Logout, then login via the Keycloak Open ID login with a user that is a member of the specified group.
View the users group membership to ensure they are added to the newly created group.