Created
December 9, 2017 00:04
-
-
Save dzimine/30348592c28fa206cc2ec0b8ff8b3ea3 to your computer and use it in GitHub Desktop.
StackStorm Exchange Goes Serverless - blog gists
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
# serverless.yml | |
... | |
functions: | |
# Standard Serverless Python function, | |
# point `handler` to an entrypoint in your python code: | |
hello_world: | |
handler: handler.hello | |
# With serverless-plugin-stackstorm | |
# point to an action in a pack from StackStorm Exchange: | |
get_github_issue: | |
stackstorm: | |
action: github.get_issue # <pack.action> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment