From d04d545bbfba2e9ea9eee5d1d8a98094a5daddaf Mon Sep 17 00:00:00 2001 From: branberry Date: Fri, 3 Nov 2023 09:29:45 -0500 Subject: [PATCH] Increase memory for lambda --- cdk-infra/lib/constructs/api/webhook-api-construct.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cdk-infra/lib/constructs/api/webhook-api-construct.ts b/cdk-infra/lib/constructs/api/webhook-api-construct.ts index a5e03ebb9..3efe30c15 100644 --- a/cdk-infra/lib/constructs/api/webhook-api-construct.ts +++ b/cdk-infra/lib/constructs/api/webhook-api-construct.ts @@ -73,6 +73,7 @@ export class WebhookApiConstruct extends Construct { environment, timeout, tracing: Tracing.ACTIVE, + memorySize: 1024, }); const githubDeleteArtifactsLambda = new NodejsFunction(this, 'githubDeleteArtifactsLambda', {