This file contains hidden or 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
## Manage your Lambda layer in SAM | |
## This creates a layer and the permissions for the layer. This particular permission opens it to the world. | |
## I then use 'sam package' and 'sam deploy' to create/update the layer | |
AWSTemplateFormatVersion: '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Description: Lambda Layer | |
Resources: | |
MyLayer: |