-
Notifications
You must be signed in to change notification settings - Fork 226
Closed
Labels
Description
What do you think about adding an .env file into every lambda folder? Sending environment variables can be accomplished after uploading the zip file.
# http://docs.aws.amazon.com/lambda/latest/dg/env_variables.html
aws lambda create-function \
--region us-east-1
--function-name myTestFunction
--zip-file fileb://path/package.zip
--role role-arn
--environment Variables={LD_LIBRARY_PATH=/usr/bin/test/lib64}
--handler index.handler
--runtime nodejs4.3
--profile default
clasense4 and jmeekhof