Hi-
I’ve got a project currently deployed on AWS with serverless v3 (just updated to 3.34.0), and it’s using an S3 bucket event trigger in an existing bucket, like this:
events:
- s3:
bucket: ${self:custom.s3.bucket}
event: s3:ObjectCreated:*
existing: true
This is creating a separate lambda using NodeJS 18, and AWS has started sending out notifications about NodeJS 18 EOL in the next few months.
Is there any way to change the runtime for this, or does that change need to be done in a new serverless v3 release?
Thanks in advance.