elysia-lambda icon indicating copy to clipboard operation
elysia-lambda copied to clipboard

A plugin for Elysia to deploy to AWS Lambda

Results 4 elysia-lambda issues
Sort by recently updated
recently updated
newest added

Proposed Fix For Issue: [[BUG] Deployment expects layer in the wrong region #2](https://github.com/TotalTechGeek/elysia-lambda/issues/2) 1. Added the option region `options.region` 2. Upgrade All Package Dependencies to latest version Then Tested with...

The problem seems to be related to SIGHUP, but in my case I am authorized correctly. Here is my aws configure: **credentials**: ``` [default]. aws_access_key_id = ****************WVFZ aws_secret_access_key = ****************Kild...

Reproduction: ```ts export const app = new Elysia().use(lambda()) ``` ```ts No overload matches this call. The last overload gave the following error. Argument of type '(app: Elysia) => Elysia' is...

My layer is in eu-central-1. elysia-lambda.yaml ```yaml deploy: src/index.ts name: elysia-lambda region: eu-central-1 memory: "1024" arch: x86_64 description: Elysia Lambda role: arn:aws:iam::... layers: - arn:aws:lambda:eu-central-1:... ``` I set the configuration...