-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(core): custom resource provider NODEJS_12 now looks like Lambda's NODEJS_12_X, add Node 14 #13301
Conversation
a11b00f
to
5f5d728
Compare
5f5d728
to
1233e5c
Compare
…d add NODEJS_12_X and NODE_JS_14_X options
1233e5c
to
aba8d4e
Compare
@rix0rrr Please review. Thanks! |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
… NODEJS_12_X, add Node 14 (aws#13301) Purpose of this PR is to align `runtime` options for custom resource providers with `aws-lambda` runtime options. New selections include `NODEJS_12_X` and `NODE_JS_14_X`. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Hey @robertd, Lambda Edge doesn't support Node 14 yet, right? I tried it myself and got an error message when deploying. |
@viniciuskneves You're correct... Lambda@Edge doesn't but (according to docs) custom resource lambda does (inline version). @nija-at @rix0rrr @njlynch Any thoughts on how to handle this catch 22? Should we revert custom resource to use Node 12 only? Or should we put checks in place for Lambda@Edge since it's experimental feature at the moment? |
@viniciuskneves & @robertd - could you open an issue for this? |
Oops, I see you already have - #13551 |
Purpose of this PR is to align
runtime
options for custom resource providers withaws-lambda
runtime options.New selections include
NODEJS_12_X
andNODE_JS_14_X
.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license