Skip to content

Instantly share code, notes, and snippets.

View Fabiankop's full-sized avatar

Fabian Rodriguez Fabiankop

View GitHub Profile
@singledigit
singledigit / SAM-Lambda-Layer.yaml
Last active April 22, 2024 16:03
How to create and manage a Lambda Layer using AWS SAM
## 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: