Skip to content

Commit

Permalink
increase bootstrapping-lambda from 128MB to 256MB
Browse files Browse the repository at this point in the history
  • Loading branch information
twrichards committed Oct 30, 2024
1 parent 99010ef commit cdf6b58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cdk/lib/__snapshots__/stack.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3554,7 +3554,7 @@ $util.toJson($ctx.result)",
},
"FunctionName": "pinboard-bootstrapping-lambda-TEST",
"Handler": "index.handler",
"MemorySize": 128,
"MemorySize": 256,
"Role": Object {
"Fn::GetAtt": Array [
"pinboardbootstrappinglambdaServiceRoleE9E1278C",
Expand Down
2 changes: 1 addition & 1 deletion cdk/lib/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export class PinBoardStack extends GuStack {
bootstrappingLambdaBasename,
{
runtime: LAMBDA_NODE_VERSION,
memorySize: 128,
memorySize: 256,
timeout: Duration.seconds(5),
handler: "index.handler",
environment: {
Expand Down

0 comments on commit cdf6b58

Please sign in to comment.