
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@seatgeek/backstage-plugin-catalog-backend-module-okta
Advanced tools
This plugin offers the ability to ingest users and groups from the [Okta API](https://developer.okta.com/docs/reference/core-okta-api/) into the Backstage catalog.
This plugin offers the ability to ingest users and groups from the Okta API into the Backstage catalog.
Install the @seatgeek/backstage-plugin-catalog-backend-module-okta package in your backend package:
# From your Backstage root directory
yarn add --cwd packages/backend @seatgeek/backstage-plugin-catalog-backend-module-okta
Then add the following config to your app-config.yml:
catalog:
providers:
okta:
myOrganizationOkta:
apiToken: ${OKTA_TOKEN}
url: https://my-organization.okta.com
Then import OktaOrgDiscoveryEntityProvider into your Backstage application's packages/backend/src/plugins/catalog.ts and add it to the CatalogBuilder.
import { OktaOrgDiscoveryEntityProvider } from '@seatgeek/backstage-plugin-catalog-backend-module-okta';
// ...
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
const builder = await CatalogBuilder.create(env);
builder.addEntityProvider(
...OktaOrgDiscoveryEntityProvider.fromConfig(env.config, {
logger: env.logger,
schedule: env.scheduler.createScheduledTaskRunner({
frequency: { days: 1 },
timeout: { minutes: 5 },
}),
// query params passed to the okta api groups request
listGroupsRequest: {
filter: 'type Eq "TEAM"',
},
// transforms the okta api user object into a UserEntity
userTransformer: oktaUser => ({
apiVersion: 'backstage.io/v1alpha1',
kind: 'User',
metadata: {
name: oktaUser.profile!.email!.split('@')[0],
},
spec: {
profile: {
displayName: oktaUser.profile!.displayName!,
},
memberOf: [],
},
}),
// transforms the group api user object into a GroupEntity
groupTransformer: oktaGroup => ({
apiVersion: 'backstage.io/v1alpha1',
kind: 'Group',
metadata: {
name: oktaGroup.profile!.name!.toLowerCase(),
description: oktaGroup.profile?.description || '',
},
spec: {
type: 'team',
children: [],
profile: {
displayName: oktaGroup.profile!.name!,
},
},
}),
}),
);
// ...
}
FAQs
This plugin offers the ability to ingest users and groups from the [Okta API](https://developer.okta.com/docs/reference/core-okta-api/) into the Backstage catalog.
The npm package @seatgeek/backstage-plugin-catalog-backend-module-okta receives a total of 48 weekly downloads. As such, @seatgeek/backstage-plugin-catalog-backend-module-okta popularity was classified as not popular.
We found that @seatgeek/backstage-plugin-catalog-backend-module-okta demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.