Srk
Srk

Reputation: 71

AWS Lambda function upgrade from NodeJs version 6.10 to 8.10 version

AWS lambda function node js version 6.10 reached end of the life now we have to upgrade the all functions with 8.10 version.how to upgrade the version and in RunTime 8.10 version is available can we choose the 8.10 version from RunTime it will upgrade the version...?

i am not aware of this before could you please suggest how to upgrade the node js version in AWS lambda function

Requirement is upgrade the lambda functions to latest version i.e from 6.10 to 8.10.

Upvotes: 0

Views: 4928

Answers (1)

Khaled Osman
Khaled Osman

Reputation: 1467

1.From the AWS console go to Lambda service

  1. Click on your function, you should see an option to choose the runtime in the UI enter image description here
  2. Select Node.js 8.10

in case you're using serverless framework, you can also set it from serverless.yaml file

Upvotes: 1

Related Questions