mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 09:57:31 +02:00
* 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>
100 lines
5.2 KiB
Markdown
100 lines
5.2 KiB
Markdown
---
|
||
title: Integrate with DigitalOcean
|
||
sidebar_label: DigitalOcean
|
||
support_level: community
|
||
---
|
||
|
||
## What is DigitalOcean
|
||
|
||
> DigitalOcean is a cloud infrastructure provider that offers developers simple, scalable virtual servers (droplets), managed databases, and other cloud services to deploy and manage applications efficiently.
|
||
>
|
||
> -- https://digitalocean.com
|
||
|
||
## Preparation
|
||
|
||
The following placeholders are used in this guide:
|
||
|
||
- `authentik.company` is the FQDN of the authentik installation.
|
||
|
||
:::info
|
||
This documentation lists only the settings that you need to change from their default values. Be aware that any changes other than those explicitly mentioned in this guide could cause issues accessing your application.
|
||
:::
|
||
|
||
## authentik configuration
|
||
|
||
To support the integration of DigitalOcean with authentik, you need to create a scope mapping as well as an application/provider pair in authentik.
|
||
|
||
### Create a scope mapping
|
||
|
||
1. Log in to authentik as an administrator and open the authentik Admin interface.
|
||
2. Navigate to **Customization** > **Property Mappings** and click **Create**.
|
||
3. Click **Scope Mapping**, **Next**, and fill the following required information:
|
||
- **Name**: Set an appropriate name
|
||
- **Scope name**: `profile`
|
||
- **Expression**:
|
||
|
||
```py
|
||
# Extract the names of all groups the user belongs to
|
||
group_names = user.groups.values_list("name", flat=True)
|
||
|
||
# From the group names, filter out those that start with "do:"
|
||
# Strip off the "do:" prefix so we’re left with just the role name
|
||
do_roles = [n[3:] for n in group_names if n and n[:3].casefold() == "do:"]
|
||
|
||
# You can find all predefined roles at: https://docs.digitalocean.com/platform/teams/roles/predefined/
|
||
# You can find documentation for custom roles at: https://docs.digitalocean.com/platform/teams/roles/custom/
|
||
priority = ["Owner", "Admin", "Member"]
|
||
|
||
# Pick the first matching role based on priority order
|
||
# (e.g. if user has both "do:Admin" and "do:Member", they'll get "Admin")
|
||
chosen = next((r for p in priority for r in do_roles if r == p), None)
|
||
|
||
# Return a dict with the team role if one was chosen, otherwise return an empty dict
|
||
return {"team_role": [chosen]} if chosen else {}
|
||
```
|
||
|
||
4. Click **Finish**.
|
||
|
||
### Create an application and provider in authentik
|
||
|
||
1. Log in to authentik as an administrator and open the authentik Admin interface.
|
||
2. Navigate to **Applications** > **Applications** and click **New Application** to open the application wizard.
|
||
- **Application**: provide a descriptive name, an optional group for the type of application, the policy engine mode, and optional UI settings.
|
||
- **Choose a Provider type**: select **OAuth2/OpenID Connect** as the provider type.
|
||
- **Configure the Provider**: provide a name (or accept the auto-provided name), the authorization flow to use for this provider, and the following required configurations.
|
||
- Note the **Client ID**, **Client Secret**, and **slug** values because they will be required later.
|
||
- Set a `Strict` redirect URI to `https://cloud.digitalocean.com/sessions/sso/callback`.
|
||
- Select any available signing key.
|
||
- Under **Advanced protocol settings**:
|
||
- Add the `profile` scope created in the previous section. Do not remove authentik’s `authentik default OAuth Mapping: OpenID 'profile'`, as claims such as `name` are required by DigitalOcean.
|
||
- **Configure Bindings** _(optional)_: you can create a [binding](/docs/add-secure-apps/bindings-overview/) (policy, group, or user) to manage the listing and access to applications on a user's **My applications** page.
|
||
|
||
3. Click **Submit** to save the new application and provider.
|
||
|
||
## DigitalOcean configuration
|
||
|
||
1. Log in to the [DigitalOcean control panel](https://cloud.digitalocean.com/) as an administrator.
|
||
2. Navigate to **Settings** (bottom left) > **Single sign-on (OIDC)**, then click **Create**.
|
||
3. Configure the following required settings:
|
||
- **OpenID provider URL**: `https://authentik.company/application/o/<application_slug>/`
|
||
- **OpenID client ID**: Set the client ID from authentik.
|
||
- **OpenID client secret**: Set the client secret from authentik.
|
||
4. Click **Test SSO config to continue**.
|
||
5. Optionally toggle **Require sign-in via SSO only**, then click **Continue**.
|
||
6. Take note of the **SSO sign-in URL**, then click **Save SSO**.
|
||
|
||
## Set the Start URL in authentik
|
||
|
||
1. Log in to authentik as an administrator and open the authentik Admin interface.
|
||
2. Navigate to **Applications** > **Applications**, then select your DigitalOcean application.
|
||
3. Click **Edit**, expand **UI Settings**, and set **Launch URL** to the **SSO sign-in URL** copied from the DigitalOcean control panel.
|
||
4. Click **Update**.
|
||
|
||
## Resources
|
||
|
||
- [DigitalOcean Documentation - How to Configure Single Sign-On for Teams](https://docs.digitalocean.com/platform/teams/how-to/configure-sso/)
|
||
|
||
## Configuration verification
|
||
|
||
To verify the integration of authentik with DigitalOcean, navigate to the authentik User interface and click the DigitalOcean application to initiate a Single Sign-On login. Upon successful login, you should be redirected to the DigitalOcean dashboard and have the appropriate permissions set by your authentik groups.
|