Created
April 25, 2019 15:04
-
-
Save italopessoa/0cf72aa49aaccea6cfc5ea9eb7108ae1 to your computer and use it in GitHub Desktop.
This file contains 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 #ItaloTestLambdaFunctionStack | |
Description: Template to create an lambda function | |
Resources: | |
HelloWorldLambdaCloudFormationItaloTemplate: | |
Type: 'AWS::Lambda::Function' | |
Properties: | |
Handler: index.helloworld | |
Role: 'arn:aws:iam::{account}:role/{role}' | |
Description: Hello World Lambda CloudFormation Italo Template description | |
Code: | |
S3Bucket: helloworldlambdacloudformationitalobucket | |
S3Key: HelloWorldLambdaItalo.zip | |
Runtime: nodejs8.10 | |
Timeout: 25 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment