1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 17:56:26 +00:00
Files
geek-cookbook/manuscript/recipes/keycloak/create-user.md
2022-07-10 20:44:18 +12:00

1.8 KiB

title, description
title description
Create users in Keycloak Unless you plan to authenticate against an outside provider (OpenLDAP, below, for example_), you'll want to create some local users..

Create Keycloak Users

!!! warning This is not a complete recipe - it's an optional component of the Keycloak recipe, but has been split into its own page to reduce complexity.

Unless you plan to authenticate against an outside provider (OpenLDAP, below, for example), you'll want to create some local users..

Ingredients

!!! Summary Existing:

* [X] [KeyCloak](/recipes/keycloak/) recipe deployed successfully

Create User

Within the "Master" realm (no need for more realms yet), navigate to Manage -> Users, and then click Add User at the top right:

Navigating to the add user interface in Keycloak{ loading=lazy }

Populate your new user's username (it's the only mandatory field)

Populating a username in the add user interface in Keycloak{ loading=lazy }

Set User Credentials

Once your user is created, to set their password, click on the "Credentials" tab, and procede to reset it. Set the password to non-temporary, unless you like extra work!

Resetting a user's password in Keycloak{ loading=lazy }

Summary

We've setup users in KeyCloak, which we can now use to authenticate to KeyCloak, when it's used as an OIDC Provider, potentially to secure vulnerable services using Traefik Forward Auth.

!!! Summary Created:

* [X] Username / password to authenticate against [KeyCloak](/recipes/keycloak/)

--8<-- "recipe-footer.md"