legalgo-BE-go/template.yml
Ardeman ecc6c3b866 feat: add AWS deployment configuration and scripts
(cherry picked from commit 4b0298814581a1dfd6a6c976975cf7c742c73bb2)
2025-04-16 08:25:03 +08:00

22 lines
445 B
YAML

AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: Go Lambda API deployed with AWS SAM
Globals:
Function:
Timeout: 10
Resources:
ApiFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: legalgo-api
Handler: main
Runtime: go1.x
CodeUri: .
Events:
Api:
Type: Api
Properties:
Path: /
Method: ANY