https://github.com/rnowosielski/grunt-aws-lambda-janitor
Keeps the aws lambda versions in check
https://github.com/rnowosielski/grunt-aws-lambda-janitor
aws-lambda clean deployment grunt grunt-task
Last synced: about 2 months ago
JSON representation
Keeps the aws lambda versions in check
- Host: GitHub
- URL: https://github.com/rnowosielski/grunt-aws-lambda-janitor
- Owner: rnowosielski
- License: apache-2.0
- Created: 2017-03-07T22:48:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-04T01:56:33.000Z (over 8 years ago)
- Last Synced: 2025-09-18T13:22:17.367Z (9 months ago)
- Topics: aws-lambda, clean, deployment, grunt, grunt-task
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-aws-lambda-janitor
Keeps the aws lambda versions in check
## Installation
In order to install the package call
npm install grunt-aws-lambda-janitor --save-dev
and add it to your `Gruntfile.js` the taks configuration
grunt.initConfig({
lambda_versions_clean: {
SomeStage: {
options: {
lambdaFunctionName: "SomeLambda",
region: "eu-west-1"
}
}
}
});
and possibly add to on of your tasks
grunt.registerTask('deploy', [ ... 'lambda_versions_clean']);