-
Notifications
You must be signed in to change notification settings - Fork 56
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
AWS::Lambda::Function - Code-ZipFile #80
Comments
Please consider Ruby as well. |
Node.js 8.10 reaches EOL on 31 Dec 2019. |
@oussemos, it's generally better GitHub etiquette to use reactions rather than "+1" comments, which create clutter and generate notifications. It's the "+😀" button on the header bar for a comment. You can also click an existing reaction to add to it. |
Can we know what the status of this issue is? With NodeJS8 being deprecated, this feature is crucial for customers to upgrade their Lambda function to Node10 when they are using inline code in their CloudFormation template. |
Correcting myself - tried this out myself and it seems that CloudFormation now supports inline code for Nodejs10. |
Update NODE_10_X runtime to allow inline code in CloudFormation, per aws-cloudformation/cloudformation-coverage-roadmap#80. close #4653, close #4642
Upgrade all internal uses of node8.10 lambda runtime to node10.x. This includes all exported constructs that contain a lambda function within them. Update NODE_10_X runtime to allow inline code in CloudFormation, per aws-cloudformation/cloudformation-coverage-roadmap#80. Shout out to @nmussy who got this most of the way (#4655) close #4653, close #4642
I had faced this issue but for node12.x any updates on support for node12.x? |
Guess it's Groundhog Day. Both python3.8 and nodejs12.x are not supported by CloudFormation inline functions. How about a more fundamental fix? Why is this parameter even typed? Let the Lambda API return an error if the desired runtime is not available. |
Zipfile support for nodejs10.x is deployed and completed. Also, nodejs12.x work is completed and docs will be available soon. |
@luiseduardocolon Thank you!! |
Still no support for inline code with python3.8. |
Moving from shipped to working on it, because of python 3.8 support not quite being there yet. |
Will the Python 3.8 support result in a change to the |
Another point to note is that the change is not yet included in https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/ReleaseHistory.html |
Same issue on |
Same issue on |
Node v14.x not working for |
With NodeJS 16 then due to reach LTS on 26 Oct 2021, is there also a plan for that to then be supported as well? |
Its absolutely nuts that this is taking so long to get supported.. It's not new functionally, it's just adding that functionality to a current runtime. I don't understand why we are months down the track from that runtime release and this still isn't implemented.. I guess I'll log a case with with out account manager. |
Same issue in us-west-2. Reverting to Node.js 12.x worked. |
Issue still exists with nodejs14.x as of today on eu-west-3... |
I received error I was able to first deploy the same lambda as It's a temporary work-around but I hope it's helpful for others. |
Happening in eu-west-1 too 😢 |
History repeats with every new Node.js AWS Lambda runtime https://forums.aws.amazon.com/thread.jspa?threadID=303166 |
It seems to be a per-account thing for me! Deploying to eu-west-1 in account A works fine, but deploying to same region in Account B gives the dreaded |
happen in us-east-1 while deploying lambda edge thru cfn. |
Is this fixed already? We're almost August and Node.js v16 will get into LTS active status in October https://nodejs.org/en/about/releases/ so suppose this will be the new Node.js version in AWS Lambda shortly. |
I was able to deploy a ZipFile with node 14.x in us-west-2 today |
Finally, this works! Just tested with Node.js v14.x in |
It is now working for eu-west-2 |
working now for |
Bumping up --> I'm getting the ZipFile unsupported error in eu-west-1 in my own account, for both node12 and node14. Is there any written analysis somewhere on what is causing the issue? |
is Python3.9 now also supported |
@michaelbrewer Yes, you can now inline python3.9 code using ZipFile. We introduced a change that enables the use of the ZipFile property with all nodejs and python runtimes, so newly released versions of these runtimes will have day-one support for inlined code. |
2. Scope of request
Support for function code via
ZipFile
in Lambda functions with any node.js/python runtime3. Expected behavior
I should be able to use the
ZipFile
attribute for any node.js/python runtime I choose6. Category (required) - Will help with tagging and be easier to find by other users to +1
Compute
The text was updated successfully, but these errors were encountered: