-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.yaml
51 lines (44 loc) · 1.59 KB
/
template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: zica teste java lambda
Parameters:
AliasName:
Type: String
Description: Environment name sufix - dev|hml|prod
Default: dev
Resources:
JavaEcho:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub "${AWS::StackName}-JavaEcho"
Description: "Simple Lambda in Java that echoes back the string received. For cold start performance test"
Handler: example.JavaEcho::echo
CodeUri: target/echo-lambda-1.jar
MemorySize: 128
Runtime: java8
Timeout: 30
AutoPublishAlias: !Ref AliasName
Policies:
- AWSLambdaBasicExecutionRole
JavaEchoLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 60
LogGroupName: !Join ["", ["/aws/lambda/", !Ref JavaEcho]]
GoEcho:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub "${AWS::StackName}-GoEcho"
Description: "Simple Lambda in Go that echoes back the string received. For cold start performance test"
Handler: golang/main/GoEcho
MemorySize: 128
Runtime: go1.x
Timeout: 30
AutoPublishAlias: !Ref AliasName
Policies:
- AWSLambdaBasicExecutionRole
JavaEchoLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 60
LogGroupName: !Join ["", ["/aws/lambda/", !Ref GoEcho]]