You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2023. It is now read-only.
Deploying the Serverless App Repo project as-is results in an error during stack creation due to the recent Lambda runtime deprecation:
The runtime parameter of nodejs6.10 is no longer supported for creating or updating AWS Lambda functions. We recommend you use the new runtime (nodejs8.10) while creating or updating functions. (Service: AWSLambdaInternal; Status Code: 400; Error Code: InvalidParameterValueException; Request ID: 24019e8b-8f67-11e9-b68f-XXXXXX)
Correcting the Runtime parameter in the Lambda function definition in the stack template to target a newer runtime fixes this, i.e. Runtime: nodejs10.x or Runtime: nodejs8.10 .