Skip to content Skip to sidebar Skip to footer

Added Custom Lambda Layer Caused Ssl Authorization Error When Calling Aws S3

I created a lambda layer for AWS lambda in Python 3.8, however, it is causing a SSL authorization error when calling S3 in my lambda function (even though no packages in the lambda

Solution 1:

It appears that some packages that are auto-generated in the Python virtual environments conflict with what AWS Lambda uses. After removing these auto-generated packages and keeping only the required packages (trial and error), I was able to load my package in AWS Lambda.


Post a Comment for "Added Custom Lambda Layer Caused Ssl Authorization Error When Calling Aws S3"