serverless/lib/templates/lambdas-cf.json
2015-09-17 09:17:10 -05:00

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
}
}
}
}