add layercake

This commit is contained in:
2025-03-20 17:46:25 -03:00
parent bc8b9805e3
commit a41f90f3a9
15 changed files with 1497 additions and 0 deletions

25
layercake/template.yaml Normal file
View File

@@ -0,0 +1,25 @@
AWSTemplateFormatVersion: 2010-09-09
Transform: AWS::Serverless-2016-10-31
Globals:
Function:
Runtime: python3.12
Resources:
LayercakeLayer:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: layercake
ContentUri: .
CompatibleArchitectures:
- x86_64
CompatibleRuntimes:
- python3.12
RetentionPolicy: Retain
Metadata:
BuildMethod: python3.12
BuildArchitecture: x86_64
Outputs:
LayercakeLayerArn:
Value: !Ref LayercakeLayer