Changing the docs for the sign-in page config from gcpiap to gcpIap. The router is case-insensitive, so they both work, but this will make everything consistent between backend and frontend.

Signed-off-by: Brian Saltz Jr <brian.saltzjr@gocrisp.com>
This commit is contained in:
Brian Saltz Jr
2024-08-14 12:20:45 -04:00
parent 13a9c63294
commit 0e16449207
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -77,6 +77,6 @@ backend.add(import('@backstage/plugin-auth-backend-module-gcp-iap-provider'));
## Adding the provider to the Backstage frontend
See [Sign-In with Proxy Providers](../index.md#sign-in-with-proxy-providers) for pointers on how to set up the sign-in page, and to also make it work smoothly for local development. You'll use `gcpiap` as the provider name.
See [Sign-In with Proxy Providers](../index.md#sign-in-with-proxy-providers) for pointers on how to set up the sign-in page, and to also make it work smoothly for local development. You'll use `gcpIap` as the provider name.
If you [provide a custom sign in resolver](https://backstage.io/docs/auth/identity-resolver#building-custom-resolvers), you can skip the `signIn` block entirely.
@@ -34,7 +34,7 @@ import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
*/
export type ProxiedSignInPageProps = SignInPageProps & {
/**
* The provider to use, e.g. "gcpiap" or "awsalb". This must correspond to
* The provider to use, e.g. "gcpIap" or "awsalb". This must correspond to
* a properly configured auth provider ID in the auth backend.
*/
provider: string;