Gathering detailed insights and metrics for serverless-prune-versions
Gathering detailed insights and metrics for serverless-prune-versions
Gathering detailed insights and metrics for serverless-prune-versions
Gathering detailed insights and metrics for serverless-prune-versions
npm install serverless-prune-versions
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
3 Stars
45 Commits
2 Watching
6 Branches
1 Contributors
Updated on 24 Sept 2023
TypeScript (98.81%)
JavaScript (0.91%)
Shell (0.28%)
Cumulative downloads
Total Downloads
Last day
-1.5%
1,891
Compared to previous day
Last week
18.2%
11,265
Compared to previous week
Last month
16.9%
46,684
Compared to previous month
Last year
85.8%
426,892
Compared to previous year
Feedback appreciated! If you have an idea for how this library can be improved (or just a complaint/criticism) please open an issue.
This plugin for the Serverless Framework removes old versions of AWS Lambda functions - important because if left to it's own devices each time the Serverless Framework is used to update your Lambda or Lambda Layer code in AWS it creates a new version. But if you aren't using the old versions then no harm, no foul - right? Unfortunately not, because for each and every version that's created AWS Lambda stores the source code used by that version for you, and there's a hard limit of only 75GB available per account for storage of this source code. By removing old versions this plugin keeps you from hitting this storage limit, letting you worry about features instead of account limits.
Install the plugin as a dev dependency in your project:
npm i serverless-prune-versions -D
or yarn add serverless-prune-versions -D
Add the plugin to the plugins
block of your serverless.yml
file:
1plugins: 2 - serverless-prune-versions
Because this plugin will delete deployed versions of your Lambda functions it is disabled by default and you must explicitly enable it.
This plugin uses the following default configuration:
Property | Description | Default value |
---|---|---|
Automatic | Boolean, should plugin run automatically post-deployment | false |
Include Layers | Boolean, should plugin remove Lambda Layer versions in addition to Lambda versions | false |
Number | Numeric, how many versions to retain | 5 |
All properties can be changed by overriding values in the custom
block of your serverless.yml
. In this example the plugin will automatically run after every deployment and will remove all Lambda and Lambda Layer versions except for the 3 most recent.
1custom: 2 prune: 3 automatic: true 4 includeLayers: true 5 number: 3
This is the minimal configuration needed for the plugin to run automatically after every deployment - it will only remove Lambda versions (not Lambda Layer versions) and will retain the last 5 versions (since those defaults weren't overriden).
1custom: 2 prune: 3 automatic: true
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/24 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
17 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More