Created
May 19, 2017 20:31
-
-
Save ernestofreyreg/e71ee59f827575997eb816dc62d41fdd to your computer and use it in GitHub Desktop.
Serverless config for deploy GCF functions to AWS
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
service: hello-world | |
provider: | |
name: aws | |
runtime: nodejs6.10 | |
functions: | |
hello: | |
handler: index-aws.handler | |
events: | |
- http: | |
path: / | |
method: get | |
- http: | |
path: / | |
method: post |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment