From 80aabc4f4ee7a0e1674bc58c7311c3cf0111f10b Mon Sep 17 00:00:00 2001 From: MrDrHolmes Date: Wed, 9 Jul 2025 19:43:11 +0900 Subject: [PATCH] chore: bump lambda runtime to python 3.10 (EOL 3.9) #606 --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 22fc2f1..c628d97 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,7 +41,7 @@ export class RemoteOutputs extends Construct { super(scope, id); const onEvent = new lambda.Function(this, 'MyHandler', { - runtime: lambda.Runtime.PYTHON_3_9, + runtime: lambda.Runtime.PYTHON_3_10, code: lambda.Code.fromAsset(path.join(__dirname, '../custom-resource-handler')), handler: 'remote-outputs.on_event', timeout: props.timeout, @@ -122,7 +122,7 @@ export class RemoteParameters extends Construct { super(scope, id); const onEvent = new lambda.Function(this, 'MyHandler', { - runtime: lambda.Runtime.PYTHON_3_9, + runtime: lambda.Runtime.PYTHON_3_10, code: lambda.Code.fromAsset(path.join(__dirname, '../custom-resource-handler')), handler: 'remote-parameters.on_event', timeout: props.timeout,