* website/integrations: rename "Create with Provider" to "New Application" The application list page now uses a split-button labeled "New Application" instead of the old "Create with Provider" dropdown. Update all 113 integration guides to match. * website/docs: update flow, stage, and policy button labels - "Create" → "New Flow", "New Stage", "New Policy" for trigger buttons - "Finish" → "Create Flow", "Create Stage", "Create Policy" for submit - "Create and bind stage" → "New Stage" / "Bind Existing Stage" - "Create" (binding submit) → "Create Stage Binding" * website/docs: update provider button labels - "Create" → "New Provider" for trigger buttons - "Create with Provider" → "New Application" in RAC docs - "Create" → "New Property Mapping", "New RAC Endpoint", "New Prompt" for related entity creation * website/docs: update directory button labels - "Create" → "New Source" for federation/social login pages - "Create" → "New Role", submit → "Create Role" - "Create" → "New Invitation" - Policy binding submit → "Create Policy Binding" * website/docs: update endpoint device and system management button labels - "Create" → "New Endpoint Connector", "New Enrollment Token", "New Device Access Group", "New Flow" - Submit → "Create Device Access Group" - "Create" → "New Notification Rule", "New Notification Transport" - Binding submit → "Create Policy Binding" * Reorganize policy documentation * website/docs: address policy docs review feedback * post-rebase * website/docs: Reorganize policy documentation -- Revisions (#21601) * apply suggestions * Fix escaped. * Fix whitespace. * Update button label. * Fix phrasing. * Fix phrasing. * Clean up stragglers. * Format. --------- Co-authored-by: Dominic R <dominic@sdko.org>
3.4 KiB
title, description, tags
| title | description | tags | ||
|---|---|---|---|---|
| Okta | Integrate Okta as a source in authentik |
|
Allows users to authenticate using their Okta credentials by configuring Okta as a federated identity provider via OAuth2.
Preparation
The following placeholders are used in this guide:
authentik.companyis the FQDN of the authentik installation.company.okta.comis the FQDN of your Okta tenant.
Okta configuration
To integrate Okta with authentik you will need to create an App Integration in the Okta Admin Console.
- Log in to the Okta Admin Console as an administrator.
- Navigate to Applications > Applications > Add App Integration.
- Select OIDC - OpenID Connect, set Application Type to Web Application, and then click Next.
- Configure the following required settings:
- App Integration Name:
authentik - Sign-in redirect URIs:
https://authentik.company/source/oauth/callback/<source_slug>/ - Under Assignments, select how you'd like to control access to authentik. Allow everyone in your organization to access or select a group to limit access.
- App Integration Name:
- Click Save.
- Under Client Credentials, take note of the Client ID. This value will be required in the next section.
- Under CLIENT SECRETS, click the Copy to clipboard next to the secret and take note of the value, it will also be required in the next section.
authentik configuration
To support the integration of Okta with authentik, you need to create an Okta OAuth source in authentik.
-
Log in to authentik as an administrator and open the authentik Admin interface.
-
Navigate to Directory > Federation and Social login, click New Source, and then configure the following settings:
- Select type: select Okta OAuth Source as the source type.
- Create Okta OAuth Source: provide a name, a slug which must match the slug used in the Okta Sign-in redirect URI field (e.g.
okta), and the following required settings:- Under Protocol settings:
- Consumer key: paste the Client ID from Okta
- Consumer secret: paste the Secret from Okta
- Under URL settings:
- Authorization URL:
https://company.okta.com/oauth2/v1/authorize - Access Token URL:
https://company.okta.com/oauth2/v1/token - Profile URL:
https://company.okta.com/oauth2/v1/userinfo - OIDC Well-known URL:
https://company.okta.com/.well-known/openid-configuration - OIDC JWKS URL:
https://company.okta.com/oauth2/v1/keys
- Authorization URL:
- Under Protocol settings:
-
Click Finish to save your settings.
:::info Display new source on login screen For instructions on how to display the new source on the authentik login page, refer to the Add sources to default login page documentation. :::
:::info Embed new source in flow :ak-enterprise For instructions on embedding the new source within a flow, such as an authorization flow, refer to the Source Stage documentation. :::
Source property mappings
Source property mappings allow you to modify or gather extra information from sources. See the overview for more information.