Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.25 KB

README.md

File metadata and controls

53 lines (31 loc) · 1.25 KB

Project Taurus : Lambda Layer Demo

Description

This is demonstration of a creating a Lambda layer with a custom Python library and adding the same to a Lambda function. The entire stack is created using Serverless Framework (https://www.serverless.com/)

Installing

  • Clone the repository https://github.com/subhamay-cloudworks/0005-tarus-sls
  • Create a S3 bucket to store the Lambda code zip file.
  • Zip and Upload the following Python file to taurus/code/python in the S3 bucket.
    • taurus_code.py (taurus_code.zip)
  • From the Command line, zip the Python library code/python/my_lib.py including the python folder.
zip -r my_lib.zip python/my_lib.py
  • Execute the following Serverless commands from the project directory to create the stack:
sls deploy --verbose
  • To delete the stack either delete from CloudFormation console or execute the following command:
sls remove --verbose

Executing program

  • Execute the Lambda function either from AWS Lambda console or AWS CLI.

Help

Post message in my blog (https://blog.subhamay.com)

Authors

Contributors names and contact info

Subhamay Bhattacharyya - subhamay.aws@gmail.com

Version History

  • 0.1
    • Initial Release

License