-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yml
More file actions
24 lines (20 loc) · 776 Bytes
/
template.yml
File metadata and controls
24 lines (20 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: AWS SAM template for the LocalStack::Testing::Resource resource type
Globals:
Function:
Timeout: 180 # docker start-up times can be long for SAM CLI
MemorySize: 256
Resources:
TypeFunction:
Type: AWS::Serverless::Function
Properties:
Handler: cloud.localstack.testing.resource.HandlerWrapper::handleRequest
Runtime: java17
CodeUri: ./target/localstack-testing-resource-handler-1.0-SNAPSHOT.jar
TestEntrypoint:
Type: AWS::Serverless::Function
Properties:
Handler: cloud.localstack.testing.resource.HandlerWrapper::testEntrypoint
Runtime: java17
CodeUri: ./target/localstack-testing-resource-handler-1.0-SNAPSHOT.jar