Create a Python package for Lambda

In some cases the modules available in boto3 do not provide those which might be required in a project to let Lambda act as desired. Preparing a function package Create a folder and inside the folder install the modules that will be packed. Pip is just helpful in this case. Afterwards do a recursive zip …

AWS Access private Ec2 resources with Lambda functions

Various jobs and functions can be leveraged via AWS’ Lambda functions. That way Serverless components can be turned on. Doing so would open options to reduce a need to get Ec2 instances deployed as it would cause ongoing maintenance such like systems patching, environment configurations, monitoring etc etc. In the example outlined here there is …