You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I followed the instructions and did as below, but not seeing any results on backstage with lambda function.
Followed these steps:
cd packages/backend
yarn add @roadiehq/backstage-plugin-aws-auth
created aws.ts file and updated as below
Updated index file with below lines
import aws from './plugins/aws';
...
const awsEnv = useHotMemoize(module, () => createEnv('aws'));
...
const apiRouter = Router();
...
apiRouter.use('/aws', await aws(awsEnv));
Then cd packages/app
yarn add @roadiehq/backstage-plugin-aws-lambda
Updated this file, packages/app/src/components/catalog/EntityPage.tsx, as below
Then updated my component entry with below annotations
annotations:
backstage.io/techdocs-ref: dir:../../.
aws.com/lambda-function-name: function-name
aws.com/lambda-region: us-west-2
I didn't update the AWS keys, but expecting the front end should show something or throw an error...I am not seeing any error logs on backstage, but no results on backstage. Can you please confirm, am I missing anything ?
The text was updated successfully, but these errors were encountered:
Hi, I followed the instructions and did as below, but not seeing any results on backstage with lambda function.
Followed these steps:
Updated index file with below lines
import aws from './plugins/aws';
...
const awsEnv = useHotMemoize(module, () => createEnv('aws'));
...
const apiRouter = Router();
...
apiRouter.use('/aws', await aws(awsEnv));
Then cd packages/app
yarn add @roadiehq/backstage-plugin-aws-lambda
Updated this file, packages/app/src/components/catalog/EntityPage.tsx, as below
annotations:
backstage.io/techdocs-ref: dir:../../.
aws.com/lambda-function-name: function-name
aws.com/lambda-region: us-west-2
I didn't update the AWS keys, but expecting the front end should show something or throw an error...I am not seeing any error logs on backstage, but no results on backstage. Can you please confirm, am I missing anything ?
The text was updated successfully, but these errors were encountered: