mirror of
https://github.com/swift-server/swift-aws-lambda-runtime.git
synced 2026-05-03 07:22:27 +00:00
15 lines
454 B
YAML
15 lines
454 B
YAML
AWSTemplateFormatVersion : '2010-09-09'
|
|
Transform: AWS::Serverless-2016-10-31
|
|
Description: A sample SAM template for deploying Lambda functions.
|
|
|
|
Resources:
|
|
# HelloWorld Function
|
|
helloWorldFunction:
|
|
Type: AWS::Serverless::Function
|
|
Properties:
|
|
Handler: Provided
|
|
Runtime: provided
|
|
CodeUri: ../../.build/lambda/HelloWorld/lambda.zip
|
|
# Instructs new versions to be published to an alias named "live".
|
|
AutoPublishAlias: live
|