-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yml
executable file
·24 lines (21 loc) · 872 Bytes
/
template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: AWS SAM template for the AWSUtility::CloudFormation::CommandRunner resource type
Globals:
Function:
Timeout: 60 # docker start-up times can be long for SAM CLI
Resources:
TypeFunction:
Type: AWS::Serverless::Function
Properties:
MemorySize: 8192
Handler: software.awsutility.cloudformation.commandrunner.HandlerWrapper::handleRequest
Runtime: java8.al2
CodeUri: ./target/awsutility-cloudformation-commandrunner-handler-1.0-SNAPSHOT.jar
TestEntrypoint:
Type: AWS::Serverless::Function
Properties:
MemorySize: 8192
Handler: software.awsutility.cloudformation.commandrunner.HandlerWrapper::testEntrypoint
Runtime: java8.al2
CodeUri: ./target/awsutility-cloudformation-commandrunner-handler-1.0-SNAPSHOT.jar