Skip to content

Commit

Permalink
Remove admonitions from Proxy docs (#8860)
Browse files Browse the repository at this point in the history
  • Loading branch information
melindafekete authored Nov 28, 2024
1 parent 0bee07d commit c83199d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 24 deletions.
4 changes: 2 additions & 2 deletions frontend/src/component/admin/auth/OidcAuth/OidcAuth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ export const OidcAuth = () => {
>
documentation
</a>{' '}
to learn how to integrate with specific Open Id Connect
providers (Okta, Keycloak, Google, etc). <br />
to learn how to integrate with specific OpenID Connect
providers (such as Okta and Keycloak). <br />
Callback URL:{' '}
<code>{uiConfig.unleashUrl}/auth/oidc/callback</code>
</Alert>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/component/admin/auth/SamlAuth/SamlAuth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ export const SamlAuth = () => {
documentation
</a>{' '}
to learn how to integrate with specific SAML 2.0
providers (Okta, Keycloak, etc). <br />
providers (such as Okta, Keycloak, and Microsoft Entra
ID). <br />
Callback URL:{' '}
<code>{uiConfig.unleashUrl}/auth/saml/callback</code>
</Alert>
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/component/admin/auth/SsoGroupSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ export const SsoGroupSettings = ({
<strong>Enable Group Syncing</strong>
<p>
Enables automatically syncing of users from the{' '}
{ssoType}
provider when a user logs in.
{ssoType} provider when a user logs in.
</p>
</Grid>
<Grid item md={6} style={{ padding: '20px' }}>
Expand Down
17 changes: 6 additions & 11 deletions website/docs/reference/sso.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,22 @@
title: Single Sign-On
---


:::note Availability

**Plan**: [Enterprise](https://www.getunleash.io/pricing)

:::

Unleash Enterprise supports SAML 2.0, OpenID Connect and Google Authentication. In addition, Unleash supports username/password authentication out of the box.

### Before you start

In order to configure Single-Sign-On you will need to log in to the Unleash instance with a user that have "Admin" role. If you are self-hosting Unleash then a default user will be automatically created the first time you start unleash:

- username: `admin`
- password: `unleash4all` _(or `admin` if you started with Unleash v3)._
## Overview

## Guides
Unleash provides single sign-on (SSO) support through SAML 2.0, OpenID Connect, and username/password authentication.

Unleash enterprise supports multiple authentication providers.
To configure SSO, navigate to **Admin > Single sign-on** in the Unleash Admin UI. Admin access is required.

For step-by-step configuration instructions, refer to the following guides:
- [OpenID Connect with Okta](../how-to/how-to-add-sso-open-id-connect)
- [SAML 2.0 with Okta](../how-to/how-to-add-sso-saml)
- [SAML 2.0 with Keycloak](../how-to/how-to-add-sso-saml-keycloak)
- [SAML 2.0 with Microsoft Entra ID](../how-to/how-to-add-sso-azure-saml)
- [Google Authentication](../how-to/how-to-add-sso-google) (deprecated)
- [Google Authentication](../how-to/how-to-add-sso-google) (deprecated)
9 changes: 1 addition & 8 deletions website/remote-content/edge-proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,7 @@ const DOCS = mapObject(enrich)({
});

const getAdmonitions = (data) => {
const admonitions = {
'unleash-proxy': `:::tip
Looking for how to run the Unleash proxy? Check out the [_how to run the Unleash proxy_ guide](../how-to/how-to-run-the-unleash-proxy.mdx)!
:::`,
'unleash-edge': ``,
};
const admonitions = {};

return [admonitions[data.slugName]];
};
Expand Down

0 comments on commit c83199d

Please sign in to comment.