Configuration

To configure CUE User Manager you must go to the IAM system and create an OIDC client. After selecting your secret passphrase, it will give you an OIDC client ID. CUE User Manager will use this client ID and secret for all authentication services against the IAM system. You can now add the client ID and secret, together with the OIDC discovery endpoint and SCIM endpoint to /etc/escenic/user-manager/user-manager.yaml:

provider:
  oidcEndpoint: https://iam.example.com/.well-known/openid-configuration
  clientId: my-um-oidc-id
  clientSecret: foo-bar-baz
  scimEndpoint: https://iam.example.com/scim/v2/

The endpoint URIs should be a part of the IAM system documentation.

The configuration file has many more options, but the ones above should be enough to get you started. The configuration file has lots of helpful comments and examples. See user-manager.yaml for further documentation.