Skip to content

Configure the OIDC Identity Provider in PLOSSYS 5


In the configuration for all services, specify the following key:

  • ID_PROVIDER_NAME: Server name of the OIDC identity provider

  • ID_PROVIDER_CERT (optional): Path and the file name of the certificate generated by the OIDC identity provider

Example - setting key via PLOSSYS CLI

plossys config set ID_PROVIDER_NAME https://<id_provider_server>:32769/realms/SEAL --service any --insecure

Hint - changed ID_PROVIDER_NAME as of Keycloak 21.0.1

As of SEAL-specific Keycloak version 21.0.1, the URL needed for ID_PROVIDER_NAME has been changed.

  • old value: ID_PROVIDER_NAME=https://<id_provider_server>:32769/auth/realms/SEAL

  • new value: ID_PROVIDER_NAME=https://<id_provider_server>:32769/realms/SEAL

Hint - FQDN and lower case letters

Use the fully-qualified domain name (FQDN) of the OIDC identity provider server in lower case letters!

Example - setting key via PLOSSYS CLI

plossys config set AUTH_ISSUER_URL https://<id_provider_server>:32769/auth/realms/SEAL --service any --insecure

Hint - changed AUTH_ISSUER_URL as of Keycloak 21.0.1

As of SEAL-specific Keycloak version 21.0.1, the URL needed for `AUTH_ISSUER_URL has been changed.

  • old value: AUTH_ISSUER_URL=https://<id_provider_server>:32769/auth/realms/SEAL

  • new value: AUTH_ISSUER_URL=https://<id_provider_server>:32769/realms/SEAL


Back to top