drupal/oktaplus

There is no license information available for the latest version (1.0.x-dev) of this package.

Okta-specific enhancements for OpenID Connect

Installs: 53

Dependents: 0

Suggesters: 0

Security: 0

Type:drupal-module

1.0.x-dev 2024-08-20 01:58 UTC

This package is auto-updated.

Last update: 2024-10-10 21:16:58 UTC


README

Oktaplus provides Okta-specific enhancements for the OpenID Connect module.

Configuration

Configuration can be found at /admin/config/people/oktaplus.

Event hooks

Oktaplus provides an endpoint for Okta event hooks.

The endpoint controller handles GET requests to fulfill a One-time verification request.

POST requests to the endpoint must use Basic authentication with the configured event hook secret.

Events are added to the oktaplus_event_queue queue and should be processed with a cron job:

0 * * * * drush queue:run oktaplus_event_queue

The following events will result in Drupal user accounts being blocked:

  • application.user_membership.remove
  • user.lifecycle.deactivate
  • user.lifecycle.suspend

Furthermore, the following event will also delete the user from the authmap.

  • user.lifecycle.delete.initiated

No other events are currently in use.