-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.json
26 lines (26 loc) · 846 Bytes
/
template.json
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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Resources": {
"Hello": {
"Type": "AWS::Serverless::Function",
"Properties": {
"FunctionName": "sam-php-example-hello",
"Handler": "hello.hello",
"Runtime": "provided",
"CodeUri": "../output/function.zip",
"Layers": "LAYERS_PLACEHOLDER"
}
},
"Goodbye": {
"Type": "AWS::Serverless::Function",
"Properties": {
"FunctionName": "sam-php-example-goodbye",
"Handler": "goodbye.goodbye",
"Runtime": "provided",
"CodeUri": "../output/function.zip",
"Layers": "LAYERS_PLACEHOLDER"
}
}
}
}