Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ functions:
hello:
handler: handler.hello
layers:
- Ref: PythonRequirementsLambdaLayer
- ${cf:<stack-name>-${self:provider.stage}.PythonRequirementsLambdaLayerQualifiedArn}
```

If the layer requires additional or custom configuration, add them onto the `layer` option.
Expand All @@ -289,6 +289,7 @@ custom:
licenseInfo: GPLv3
allowedAccounts:
- '*'
retain: false
```

## Omitting Packages
Expand Down
4 changes: 4 additions & 0 deletions lib/layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ function createLayers() {
description:
'Python requirements generated by serverless-python-requirements.',
compatibleRuntimes: [this.serverless.service.provider.runtime],
retain:
this.options.layer.retain !== undefined && this.options.layer.retain
? true
: false,
},
this.options.layer
);
Expand Down