mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
YAML supports different indentations however dicts (which we use for events) need a 4 level deep indentation to work correctly. The YAML files are updated so that the user knows that he should always use a 4 level deep indentation.
6 lines
86 B
YAML
6 lines
86 B
YAML
service: myService
|
|
provider: aws
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|