mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
20 lines
549 B
YAML
20 lines
549 B
YAML
|
# This is a minimal AWS SAM template sufficient to invoke the handler
|
||
|
# in the CI environment. It probably hasn't been tested for actual
|
||
|
# deployments.
|
||
|
|
||
|
AWSTemplateFormatVersion: 2010-09-09
|
||
|
Transform: 'AWS::Serverless-2016-10-31'
|
||
|
Resources:
|
||
|
MartinLayer:
|
||
|
Type: 'AWS::Serverless::LayerVersion'
|
||
|
Properties:
|
||
|
ContentUri: lambda-layer/
|
||
|
MartinFunction:
|
||
|
Type: 'AWS::Serverless::Function'
|
||
|
Properties:
|
||
|
Runtime: provided.al2023
|
||
|
Layers:
|
||
|
- Ref: MartinLayer
|
||
|
CodeUri: lambda-function/
|
||
|
Handler: config.yaml
|