Merge pull request #23896 from cftad/cftad/auth-aws-alb-provider

Update AWS ALB Auth Provider Default Export
This commit is contained in:
Patrik Oldsberg
2024-04-03 18:08:38 +02:00
committed by GitHub
5 changed files with 13 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/plugin-auth-backend-module-aws-alb-provider': patch
---
Added `authModuleAwsAlbProvider` as a default export.
It can now be used like this in your backend: `backend.add(import('@backstage/plugin-auth-backend-module-aws-alb-provider'));`
@@ -1,6 +1,6 @@
# Auth Module: AWS ALB Provider
This module provides an GitHub auth provider implementation for `@backstage/plugin-auth-backend`.
This module provides an AWS application load balancer auth provider implementation for `@backstage/plugin-auth-backend`.
## Links
@@ -13,7 +13,9 @@ import { ProxyAuthenticator } from '@backstage/plugin-auth-node';
import { SignInResolverFactory } from '@backstage/plugin-auth-node';
// @public (undocumented)
export const authModuleAwsAlbProvider: () => BackendFeature;
const authModuleAwsAlbProvider: () => BackendFeature;
export { authModuleAwsAlbProvider };
export default authModuleAwsAlbProvider;
// @public (undocumented)
export const awsAlbAuthenticator: ProxyAuthenticator<
@@ -22,5 +22,6 @@
export { awsAlbAuthenticator } from './authenticator';
export { authModuleAwsAlbProvider } from './module';
export { authModuleAwsAlbProvider as default } from './module';
export { awsAlbSignInResolvers } from './resolvers';
export { type AwsAlbResult } from './types';
@@ -20,7 +20,7 @@ import {
} from '@backstage/plugin-auth-node';
import { AwsAlbResult } from './types';
/**
* Available sign-in resolvers for the Google auth provider.
* Available sign-in resolvers for the AWS ALB auth provider.
*
* @public
*/