Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: EASIE connections #1695

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/authentication/easie/google.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Add Google as a EASIE connection
description: Learn how to integrate Google with Clerk using EASIE SSO.
---

<TutorialHero
beforeYouStart={[
{
title: "A Clerk application is required.",
link: "/docs/quickstarts/setup-clerk",
icon: "clerk",
},
{
title: "A Google Developer account is required.",
link: "https://console.developers.google.com/",
icon: "user-circle",
},
{
title: "Add the Enhanced authentication add-on to your Pro plan",
link: "/pricing",
icon: "plus-circle",
},
{
title: "Enable email address as an identifier for your application.",
link: "/docs/authentication/configuration/sign-up-sign-in-options#identifiers",
icon: "key",
}
]}
>
- Use Google OAuth to enable single sign-on (SSO) via [EASIE](https://easie.clerk.dev) for your Clerk application.
</TutorialHero>
31 changes: 31 additions & 0 deletions docs/authentication/easie/microsoft.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Add Microsoft as a EASIE connection
description: Learn how to integrate Microsoft with Clerk using EASIE SSO.
---

<TutorialHero
beforeYouStart={[
{
title: "A Clerk app is required.",
link: "/docs/quickstarts/setup-clerk",
icon: "clerk",
},
{
title: "A Microsoft Azure account is required.",
link: "https://azure.microsoft.com/en-us/free/",
icon: "user-circle",
},
{
title: "Add the Enhanced authentication add-on to your Pro plan",
link: "/pricing",
icon: "plus-circle",
},
{
title: "Enable email address as an identifier for your application.",
link: "/docs/authentication/configuration/sign-up-sign-in-options#identifiers",
icon: "key",
}
]}
>
- Use Microsoft Azure Entra ID to enable single sign-on (SSO) via [EASIE](https://easie.clerk.dev) for your Clerk application.
</TutorialHero>
3 changes: 3 additions & 0 deletions docs/authentication/easie/overview.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: Enterprise SSO via EASIE
---
19 changes: 19 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,25 @@
]
]
},
{
"title": "EASIE",
"items": [
[
{
"title": "Overview",
"href": "/docs/authentication/easie/overview"
},
{
"title": "Microsoft",
"href": "/docs/authentication/easie/microsoft"
},
{
"title": "Google",
"href": "/docs/authentication/easie/google"
}
]
]
},
{
"title": "SAML",
"items": [
Expand Down
Loading