Created
November 29, 2018 23:25
-
-
Save adamcrampton/c31abb7d82bdefb1ec6ded3e9b3ef0a9 to your computer and use it in GitHub Desktop.
Shell script for deploying Lambda functions using aws-cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$#" -ne 1 ]; then | |
echo "Usage : ./build.sh lambdaName"; | |
exit 1; | |
fi | |
lambda=${1%/}; // # Removes trailing slashes | |
echo "Deploying $lambda"; | |
cd $lambda; | |
if [ $? -eq 0 ]; then | |
echo "...." | |
else | |
echo "Couldn't cd to directory $lambda. You may have mis-spelled the lambda/directory name"; | |
exit 1 | |
fi | |
echo "npm installing..."; | |
npm install | |
if [ $? -eq 0 ]; then | |
echo "done"; | |
else | |
echo "npm install failed"; | |
exit 1; | |
fi | |
echo "Checking that aws-cli is installed" | |
which aws | |
if [ $? -eq 0 ]; then | |
echo "aws-cli is installed, continuing..." | |
else | |
echo "You need aws-cli to deploy this lambda. Google 'aws-cli install'" | |
exit 1 | |
fi | |
echo "removing old zip" | |
rm archive.zip; | |
echo "creating a new zip file" | |
zip archive.zip * -r -x .git/\* \*.sh tests/\* node_modules/aws-sdk/\* \*.zip | |
echo "Uploading $lambda to $region"; | |
aws lambda update-function-code --function-name $lambda --zip-file fileb://archive.zip --publish | |
if [ $? -eq 0 ]; then | |
echo "!! Upload successful !!" | |
else | |
echo "Upload failed" | |
echo "If the error was a 400, check that there are no slashes in your lambda name" | |
echo "Lambda name = $lambda" | |
exit 1; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment