mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
29 lines
606 B
JSON
29 lines
606 B
JSON
{
|
|
"AWSTemplateFormatVersion": "2010-09-09",
|
|
"Description": "The AWS CloudFormation template for this JAWS projects lambdas",
|
|
"Parameters": {
|
|
"aaLambdaRoleArn": {
|
|
"Type": "String",
|
|
"Default": ""
|
|
}
|
|
},
|
|
"Resources": {
|
|
"lTemplate": {
|
|
"Type": "AWS::Lambda::Function",
|
|
"Properties": {
|
|
"Code": {
|
|
"S3Bucket": "",
|
|
"S3Key": ""
|
|
},
|
|
"Description": "",
|
|
"Handler": "",
|
|
"MemorySize": 1024,
|
|
"Role": {
|
|
"Ref": "aaLambdaRoleArn"
|
|
},
|
|
"Runtime": "",
|
|
"Timeout": 6
|
|
}
|
|
}
|
|
}
|
|
} |