Skip to content

Instantly share code, notes, and snippets.

@marclar
Created October 22, 2015 00:54
Show Gist options
  • Save marclar/02b650355d5606d4a3cf to your computer and use it in GitHub Desktop.
Save marclar/02b650355d5606d4a3cf to your computer and use it in GitHub Desktop.
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "*** lambdas",
"Parameters": {
"aaLambdaRoleArn": {
"Type": "String",
"Default": "***"
}
},
"Resources": {
"l": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Description": "",
"Handler": "aws_modules\\twilio\\searchnumbers\\handler.handler",
"MemorySize": 1024,
"Runtime": "nodejs",
"Timeout": 6,
"Code": {
"S3Bucket": "jaws.dev.useast1.***.com",
"S3Key": "JAWS/***/dev/lambdas/l@1445463243161.zip"
},
"Role": {
"Ref": "aaLambdaRoleArn"
}
}
},
"lGreetingsHello": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Description": "",
"Handler": "aws_modules/greetings/hello/handler.handler",
"MemorySize": 1024,
"Runtime": "nodejs",
"Timeout": 6,
"Code": {
"S3Bucket": "jaws.dev.useast1.***.com",
"S3Key": "JAWS/***/dev/lambdas/lGreetingsHello@1445032454197.zip"
},
"Role": {
"Ref": "aaLambdaRoleArn"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment