uplambda
v5.2.0
Published
CLI tool to upload code to an AWS Lambda Function and handle AWS API Gateway and permissions
Downloads
18
Readme
Uplambda
CLI tool to upload code to an AWS Lambda Function and handle AWS API Gateway and permissions
Installation
npm install -g uplambda
Prequisites
A folder in the home directory named localLambdas. Uplambda does not as of yet create that folder.
A config file is required, .uplambda.json in the home directory. Run "uplambda --account --add" to init.
git: The name of the current branch is used to verify that package.json API Gateway parameters are valid. More details can be found later on.
awslogs: Used with logs.
A user with permissions for AWS Lambda and API Gateway to be able to update Lambda code and version, and update API Gateway permissions and stage variables. You will be prompted for user's credentials from AWS IAM.
Conventions
Uplambda must be ran from a directory which has an index.js
and a package.json
file, along with the node_modules
if any are installed.
There are certain attributes in package.json that are required to handle versions and permissions. If not found, they are initialized as empty when running uplambda
. When running uplambda
(uploading to $LATEST
/dev
) those attributes are not required, but no permissions will be added if api
attribute is not found or empty. Also if no_api
attribute in package.json is set to true
, api attributes are ignored.
The name of the current branch must be the same as the lambdaAlias
attribute found in package.json. If uploading to $LATEST
/dev
(no --uplambda
) only a warning appears. If publishing to a version, the upload fails.
Each Lambda Function can linked to an API Gateway api resource. Resource name MUST be equal to Lambda Function name toLowerCase.
If Lambda version being invoked is $LATEST
, --publish
is not needed. Simply run uplambda
. No permissions are required either. When uploading to $LATEST
, alias dev
is created, if not found, and assigned to $LATEST
.
If Lambda version being invoked is a published version with an alias(even dev
which references $LATEST
), api info in package.json is required. If function being published is not being invoked through API Gateway, attribute no_api
must be set to true
in package.json. The Lambda Function name in API Gateway method should have the following format: lambda_function_name:${stageVariables.lambda_function_name}
. This way, only the stage variable needs to change for each stage and published, and api can be deployed to multiple stages.
Examples
--account
uplambda --account --add
Creates/Updates an account and inits .uplambda.json file, if not found. If found, for attributes that are not to be updated, simply skip by leaving them empty when prompted.
uplambda --account --delete account_alias
Deletes an existing account from the configuration file. If the account is not found, returns an error.
uplambda --account --list
Lists all accounts.
uplambda --account --use account_alias
Deactivates all other accounts and activates account_alias
Usage
uplambda --init
Inits package.json
info and cloudformation stack. No need to run, simply running uplambda will init as well. Added to init cloudformation template.
uplambda
Uploads code to AWS Lambda Function ($LATEST) with name the name in package.json. If AWS API Gateway parameters are found, updates policy for API resource with same name as the Lambda Function(toLowerCase), for alias dev
. If no API parameters are found, inits empty API parameters in package.json.
uplambda --logs
Uploads as usual and streams Lambda Function logs to the console using awslogs.
uplambda --publish
Uploads and publishes according to parameters in package.json. Updates API Gateway permissions accordingly. An example of filled API Gateway parameters can be found later on.
uplambda --s3 [--publish]
Uploads through s3. A bucket and a Lambda function are required to handle trigger and updates that are usually performed directly. Lambda Function will soon be uploaded as a different repo.
uplambda --cloudformation
Uploads through s3 and creates/updates stack according to cloudformation template found in cloudformation/stack.json
. Stack name is Lambda${functionName}
, where functionName is the name
in package.json
in camel case. To use, account attribute for cloudformation
bucket must be set and either account attribute lambda_role
or package.json
attribute lambda_role
must be set. Set a default lambda_role
for the account and use package.json
attribute for lambdas with different role. Cannot be used to publish. For publish, use uplambda --publish
. Parameters can be added to be used in the stack; either hard coded or through the use of file named params.json
in the cloudformation
folder. Do not forget to add all parameters in stack.json as well. Usually this file should be git ignored.
Example
// cloudformation/params.json
[{
"ParameterKey": "SomeParameter",
"ParameterValue": "someValue"
}]
AWS API Gateway parameters
{
"name": "lambda_function_name",
"version": "4.2.2",
"description": "",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "2.186.0"
},
"api": {
"apiId": "4r7z01q51bg", <- API Gateway api id (found in a parenthesis after api name in API Gateway panel).
"stageNames": [
"testing" <- API Gateway stage names where there is a resource invoking the function
],
"method": "POST" <- Resource method which invokes the function
},
"lambdaAlias": "production", <- Used to make sure we are in the right branch. Also used as alias for Lambda function version.
"no_api": false <- When publishing to a version, but no api is invoking Lambda, set to true
"files": [] <- Files that are ignored by git, but required (e.g. cred.json)
"lambda_role": "my_role_name" <- Used along with account info to create arn for role
}
If a file is required but it is ignored, add it in package.json
, files
attribute. If files in the files
attribute are not found, the upload will fail.
When running uplambda
, code is uploaded to $LATEST
and permission are updated for Lambda alias dev
, which is used as an alias for $LATEST
version. No API Gateway stage variables are updated.
When running uplambda --publish
, code is uploaded to $LATEST
, a new Lambda Function version is published and lambdaAlias
(which must be the same as the current branch name) is used to create/update an alias for that version. Permissions are updated accordingly for API Gateway resource method which invokes Lambda function. An API Gateway stage variable with Name the Lambda Function name is created/updated to have value the same as lambdaAlias
.
Common mistakes
When uploading the same function to multiple accounts, make sure api and alias info are correct before uploading. Errors about 'Invalid stage identifier' mean API with those parameters was not found.
Contributing
Running the tests
You will need an account in .uplambda.json config file named test_account
. To init, run uplambda --account --add
. A Lambda Function named test_uplambda_function
in your AWS account whose credentials are in test_account
. A published version of the test_uplambda_function
(version 1).
An API Gateway API, published to a stage named dev
. A stage variable in the dev
stage named test_uplambda_function
with value dev
. A stage variable in the same dev
stage named version_alias
, with any value.
Run npm test