Created
October 22, 2015 00:54
-
-
Save marclar/02b650355d5606d4a3cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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/[email protected]" | |
}, | |
"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/[email protected]" | |
}, | |
"Role": { | |
"Ref": "aaLambdaRoleArn" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment