Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add retain to layer options #758

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
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