This module provides an Okta auth provider implementation for @backstage/plugin-auth-backend.
This module is used in auth-backend/src/providers/okta
import { oktaAuthenticator } from '@backstage/plugin-auth-backend-module-okta-provider';
export const okta = createAuthProviderIntegration({
create({
authHandler?: AuthHandler<OAuthResult>,
signIn?: {
resolver: SignInResolver<OAuthResult>,
},
}) {
return createOAuthProviderFactory({
authenticator: oktaAuthenticator,
});
},
});
The okta-provider backend module for the auth plugin.