Interface KeycloakAdminClientConfig
@ConfigMapping(prefix="quarkus.keycloak.admin-client")
@ConfigRoot(phase=RUN_TIME)
public interface KeycloakAdminClientConfig
Keycloak Admin Client
-
Method Details
-
serverUrl
Keycloak server URL, for example, `https://host:port`. If this property is not set then the Keycloak Admin Client injection will fail - use org.keycloak.admin.client.KeycloakBuilder to create it instead. -
realm
Realm. -
clientId
Client id. -
clientSecret
Client secret. Required with a `client_credentials` grant type. -
username
Username. Required with a `password` grant type. -
password
Password. Required with a `password` grant type. -
scope
OAuth 2.0 Access Token Scope. -
grantType
OAuth Grant Type.
-