Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 904 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 904 Bytes

CUSTOM LOOKUP LAMBDA FUNCTION

The Python script , AWS Lambda function and AWS CloudFormation templates described queries Amazon DynamoDB table with the inputs from AWS CloudFormation to lookup the mappings.

For more details refer the blog here

Use virtualenv for Python execution

To prevent any problems with your system Python version conflicting with the application, virtualenv can be used.

Install Python: pip install python 2.7

Install virtualenv:

$ pip install virtualenv
$ virtualenv -p PATH_TO_YOUR_PYTHON_2.7 venv2
$ virtualenv ~/.virtualenvs/venv2
$ source ~/.virtualenvs/venv2/bin/activate
$ pip install awscli