diff --git a/.changeset/tasty-pears-shake.md b/.changeset/tasty-pears-shake.md new file mode 100644 index 0000000000..565cb02b77 --- /dev/null +++ b/.changeset/tasty-pears-shake.md @@ -0,0 +1,5 @@ +--- +'@backstage/core-components': patch +--- + +Updated ProxiedSignInPageProps docs diff --git a/contrib/docs/tutorials/aws-alb-aad-oidc-auth.md b/contrib/docs/tutorials/aws-alb-aad-oidc-auth.md index 52784e93bb..2b3e02c18b 100644 --- a/contrib/docs/tutorials/aws-alb-aad-oidc-auth.md +++ b/contrib/docs/tutorials/aws-alb-aad-oidc-auth.md @@ -207,9 +207,8 @@ Use the following `auth` configuration when running Backstage on AWS: auth: providers: awsalb: - development: - issuer: https://login.microsoftonline.com//v2.0 - region: + issuer: https://login.microsoftonline.com//v2.0 + region: ``` Replace `` with the value of `Directory (tenant) ID` of the AAD App and `` with the AWS region identifier where the ALB is deployed (for example: `eu-central-1`). diff --git a/packages/core-components/src/layout/ProxiedSignInPage/ProxiedSignInPage.tsx b/packages/core-components/src/layout/ProxiedSignInPage/ProxiedSignInPage.tsx index 13a61d259f..965c603004 100644 --- a/packages/core-components/src/layout/ProxiedSignInPage/ProxiedSignInPage.tsx +++ b/packages/core-components/src/layout/ProxiedSignInPage/ProxiedSignInPage.tsx @@ -32,7 +32,7 @@ import { ProxiedSignInIdentity } from './ProxiedSignInIdentity'; */ export type ProxiedSignInPageProps = SignInPageProps & { /** - * The provider to use, e.g. "gcp-iap" or "aws-alb". This must correspond to + * The provider to use, e.g. "gcp-iap" or "awsalb". This must correspond to * a properly configured auth provider ID in the auth backend. */ provider: string;