@@ -190,6 +190,7 @@ export class PinBoardStack extends GuStack {
190
190
WORKFLOW_BRIDGE_LAMBDA_BASENAME ,
191
191
{
192
192
runtime : LAMBDA_NODE_VERSION ,
193
+ architecture : lambda . Architecture . ARM_64 ,
193
194
memorySize : 128 ,
194
195
timeout : Duration . seconds ( 5 ) ,
195
196
handler : "index.handler" ,
@@ -236,6 +237,7 @@ export class PinBoardStack extends GuStack {
236
237
gridBridgeLambdaBasename ,
237
238
{
238
239
runtime : LAMBDA_NODE_VERSION ,
240
+ architecture : lambda . Architecture . ARM_64 ,
239
241
memorySize : 128 ,
240
242
timeout : Duration . seconds ( 5 ) ,
241
243
handler : "index.handler" ,
@@ -283,6 +285,7 @@ export class PinBoardStack extends GuStack {
283
285
DATABASE_BRIDGE_LAMBDA_BASENAME ,
284
286
{
285
287
runtime : LAMBDA_NODE_VERSION ,
288
+ architecture : lambda . Architecture . ARM_64 ,
286
289
memorySize : 128 ,
287
290
timeout : Duration . seconds ( 30 ) ,
288
291
handler : "index.handler" ,
@@ -375,6 +378,7 @@ export class PinBoardStack extends GuStack {
375
378
{
376
379
vpc : accountVpc ,
377
380
runtime : LAMBDA_NODE_VERSION ,
381
+ architecture : lambda . Architecture . ARM_64 ,
378
382
memorySize : 128 ,
379
383
timeout : Duration . seconds ( 30 ) ,
380
384
handler : "index.handler" ,
@@ -400,6 +404,7 @@ export class PinBoardStack extends GuStack {
400
404
pinboardAuthLambdaBasename ,
401
405
{
402
406
runtime : LAMBDA_NODE_VERSION ,
407
+ architecture : lambda . Architecture . ARM_64 ,
403
408
memorySize : 128 ,
404
409
timeout : Duration . seconds ( 11 ) ,
405
410
handler : "index.handler" ,
@@ -512,6 +517,7 @@ export class PinBoardStack extends GuStack {
512
517
usersRefresherLambdaBasename ,
513
518
{
514
519
runtime : LAMBDA_NODE_VERSION ,
520
+ architecture : lambda . Architecture . ARM_64 ,
515
521
memorySize : 512 ,
516
522
timeout : Duration . minutes ( 15 ) ,
517
523
handler : "index.handler" ,
@@ -565,6 +571,7 @@ export class PinBoardStack extends GuStack {
565
571
securityGroups : [ databaseSecurityGroup ] ,
566
572
functionName : `pinboard-archiver-lambda-${ this . stage } ` ,
567
573
runtime : LAMBDA_NODE_VERSION ,
574
+ architecture : lambda . Architecture . ARM_64 ,
568
575
handler : "index.handler" ,
569
576
environment : {
570
577
[ ENVIRONMENT_VARIABLE_KEYS . databaseHostname ] : databaseHostname ,
@@ -603,6 +610,7 @@ export class PinBoardStack extends GuStack {
603
610
securityGroups : [ databaseSecurityGroup ] ,
604
611
functionName : getEmailLambdaFunctionName ( this . stage as Stage ) ,
605
612
runtime : LAMBDA_NODE_VERSION ,
613
+ architecture : lambda . Architecture . ARM_64 ,
606
614
handler : "index.handler" ,
607
615
environment : {
608
616
[ ENVIRONMENT_VARIABLE_KEYS . databaseHostname ] : databaseHostname ,
@@ -643,6 +651,7 @@ export class PinBoardStack extends GuStack {
643
651
bootstrappingLambdaBasename ,
644
652
{
645
653
runtime : LAMBDA_NODE_VERSION ,
654
+ architecture : lambda . Architecture . ARM_64 ,
646
655
memorySize : 256 ,
647
656
timeout : Duration . seconds ( 5 ) ,
648
657
handler : "index.handler" ,
0 commit comments