Skip to content

Instantly share code, notes, and snippets.

@claydanford
Last active December 20, 2019 20:45
Show Gist options
  • Save claydanford/2a4303a82761a4030e0c13538a3bfeb4 to your computer and use it in GitHub Desktop.
Save claydanford/2a4303a82761a4030e0c13538a3bfeb4 to your computer and use it in GitHub Desktop.
Example serverless framework yaml
service: sls-example
provider:
name: aws
runtime: python3.8
stage: ${opt:stage, 'dev'}
tags:
Application: sls-example
Owner: admin@foo.io
Environment: ${self:provider.stage}
functions:
hello:
handler: handler.hello
events:
- http:
method: get
path: hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment