From 788145307a8139dc537b3f252408d343726b0f33 Mon Sep 17 00:00:00 2001 From: Philipp Hugenroth Date: Tue, 13 Jun 2023 14:39:20 +0200 Subject: [PATCH] Align Auth Provider Sidebar in docs with available Providers Signed-off-by: Philipp Hugenroth --- docs/auth/cloudflare/access.md | 5 ++--- docs/auth/index.md | 5 +++-- microsite/sidebars.json | 2 ++ mkdocs.yml | 7 +++++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/docs/auth/cloudflare/access.md b/docs/auth/cloudflare/access.md index 51567e9a0f..b1d8e4c676 100644 --- a/docs/auth/cloudflare/access.md +++ b/docs/auth/cloudflare/access.md @@ -1,8 +1,7 @@ --- -id: cfaccess +id: provider title: Cloudflare Access Provider -sidebar_label: cfaccess -# prettier-ignore +sidebar_label: Cloudflare Access description: Adding Cloudflare Access as an authentication provider in Backstage --- diff --git a/docs/auth/index.md b/docs/auth/index.md index b2aac47e2a..ff1f0c98bf 100644 --- a/docs/auth/index.md +++ b/docs/auth/index.md @@ -14,9 +14,10 @@ access external resources. Backstage comes with many common authentication providers in the core library: -- [Atlassian](atlassian/provider.md) - [Auth0](auth0/provider.md) +- [Atlassian](atlassian/provider.md) - [Azure](microsoft/provider.md) +- [Azure Easy Auth](microsoft/azure-easyauth.md) - [Bitbucket](bitbucket/provider.md) - [Bitbucket Server](bitbucketServer/provider.md) - [Cloudflare Access](cloudflare/access.md) @@ -25,8 +26,8 @@ Backstage comes with many common authentication providers in the core library: - [Google](google/provider.md) - [Google IAP](google/gcp-iap-auth.md) - [Okta](okta/provider.md) +- [OAuth 2 Custom Proxy](oauth2-proxy/provider.md) - [OneLogin](onelogin/provider.md) -- [OAuth2Proxy](oauth2-proxy/provider.md) These built-in providers handle the authentication flow for a particular service including required scopes, callbacks, etc. These providers are each added to a diff --git a/microsite/sidebars.json b/microsite/sidebars.json index f612e7b880..ec0f443ed5 100644 --- a/microsite/sidebars.json +++ b/microsite/sidebars.json @@ -284,6 +284,8 @@ "auth/microsoft/provider", "auth/microsoft/easy-auth", "auth/bitbucket/provider", + "auth/bitbucketServer/provider", + "auth/cloudflare/provider", "auth/github/provider", "auth/gitlab/provider", "auth/google/provider", diff --git a/mkdocs.yml b/mkdocs.yml index 8c29645840..5544053263 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -148,17 +148,20 @@ nav: - Authentication and identity: - Adding Authentication: 'auth/index.md' - Included providers: + - Atlassian: 'auth/atlassian/provider.md' - Auth0: 'auth/auth0/provider.md' - Azure: 'auth/microsoft/provider.md' - Azure EasyAuth: 'auth/microsoft/azure-easyauth.md' + - Bitbucket: 'auth/bitbucket/provider.md' + - Bitbucket Server: 'auth/bitbucketServer/provider.md' + - Cloudflare Access: 'auth/cloudflare/access.md' - GitHub: 'auth/github/provider.md' - GitLab: 'auth/gitlab/provider.md' - Google: 'auth/google/provider.md' - Google IAP: 'auth/google/gcp-iap-auth.md' + - OAuth2Proxy: 'auth/oauth2-proxy/provider.md' - Okta: 'auth/okta/provider.md' - OneLogin: 'auth/onelogin/provider.md' - - OAuth2Proxy: 'auth/oauth2-proxy/provider.md' - - Bitbucket: 'auth/bitbucket/provider.md' - Sign in resolvers: 'auth/identity-resolver.md' - OAuth and OpenID Connect: 'auth/oauth.md' - OIDC provider from scratch: 'auth/oidc.md'