forked from ansible-collections/amazon.aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lambda - add support for layers when creating or updating lambda func…
…tions (ansible-collections#1118) lambda - add support for layers when creating or updating lambda functions Depends-On: ansible-collections#1095 SUMMARY add the ability for module lambda to create/update a lambda function with layers attached ISSUE TYPE Feature Pull Request COMPONENT NAME lambda ADDITIONAL INFORMATION - lambda: name: test-func runtime: python3.7 (...) layers: - layer_version_arn: 'arn:aws:lambda:us-east-1:123456789012:layer:python27-env:7' - layer_name: pycustom-library version: 1 Reviewed-by: Alina Buzachis <None> Reviewed-by: Bikouo Aubin <None>
- Loading branch information
1 parent
67bc04d
commit 38f2a77
Showing
5 changed files
with
278 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
minor_changes: | ||
- lambda - add support for function layers when creating or updating lambda function. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ dependencies: | |
- role: setup_botocore_pip | ||
vars: | ||
botocore_version: 1.21.51 | ||
- role: setup_remote_tmp_dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters