Merge pull request #10486 from getndazn/fix/aws-alb-docs

Fix/aws alb docs
This commit is contained in:
Ben Lambert
2022-03-31 12:51:14 +02:00
committed by GitHub
3 changed files with 8 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Updated ProxiedSignInPageProps docs
@@ -207,9 +207,8 @@ Use the following `auth` configuration when running Backstage on AWS:
auth:
providers:
awsalb:
development:
issuer: https://login.microsoftonline.com/<TENANT_ID>/v2.0
region: <AWS_REGION>
issuer: https://login.microsoftonline.com/<TENANT_ID>/v2.0
region: <AWS_REGION>
```
Replace `<TENANT_ID>` with the value of `Directory (tenant) ID` of the AAD App and `<AWS_REGION>` with the AWS region identifier where the ALB is deployed (for example: `eu-central-1`).
@@ -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;