From cdd2ccac26934e2af0c54c2bdc69ce6b10ad30a4 Mon Sep 17 00:00:00 2001 From: Berend de Boer Date: Sat, 19 Aug 2023 19:58:57 +1200 Subject: [PATCH] feat: require node 18 runtime --- src/provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/provider.ts b/src/provider.ts index 0254206..e457475 100644 --- a/src/provider.ts +++ b/src/provider.ts @@ -75,7 +75,7 @@ export class Provider extends Construct { const fn = new lambda.NodejsFunction(scope, id, { vpc: props.vpc, entry: entry, - runtime: Runtime.NODEJS_16_X, + runtime: Runtime.NODEJS_18_X, timeout: Duration.seconds(300), bundling: { sourceMap: true,