You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -37,15 +36,15 @@ _Feedback appreciated! If you have an idea for how this library can be improved
37
36
38
37
# Overview
39
38
40
-
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.
39
+
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.
41
40
42
41
# Installation and setup
43
42
44
-
Install the plugin as a dev dependency in your project
43
+
Install the plugin as a dev dependency in your project:
45
44
46
45
`npm i serverless-prune-versions -D` or `yarn add serverless-prune-versions -D`
47
46
48
-
Add the plugin to the `plugins` block of your `serverless.yml` file
47
+
Add the plugin to the `plugins` block of your `serverless.yml` file:
49
48
50
49
```yml
51
50
plugins:
@@ -56,7 +55,7 @@ plugins:
56
55
57
56
Because this plugin will delete deployed versions of your Lambda functions it is disabled by default and you must explicitly enable it.
58
57
59
-
This plugin uses the following default configuration
58
+
This plugin uses the following default configuration:
@@ -65,7 +64,7 @@ This plugin uses the following default configuration
65
64
| Number | Numeric, how many versions to retain | `5` |
66
65
67
66
68
-
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 Layers except for the 3 most recent.
67
+
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.
69
68
70
69
```yml
71
70
custom:
@@ -75,12 +74,10 @@ custom:
75
74
number: 3
76
75
```
77
76
78
-
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.
77
+
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).
0 commit comments