aws-samples / amazon-textract-serverless-large-scale-document-processing

Process documents at scale using Amazon Textract
Apache License 2.0
328 stars 165 forks source link

NodeJS10 no longer supported by Lambda causes stack rollback #37

Open fichmann opened 2 years ago

fichmann commented 2 years ago

Nodejs10 no longer available from Lambda runtime environments - causes the Cloudformation to stop and roll back everything.,

fichmann commented 2 years ago

I fixed by replacing all the references on the code from 10 to 12: grep -e 'nodejs10' -rl . | xargs sed -i '' 's/nodejs10/nodejs12/g'

zachelliottwx commented 2 years ago

I've logged a PR here: https://github.com/aws-samples/amazon-textract-serverless-large-scale-document-processing/pull/38 to fix this.