mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
19 lines
317 B
YAML
19 lines
317 B
YAML
# Hello World for Azure Functions
|
|
service: hello-world # Service Name
|
|
|
|
provider:
|
|
name: azure
|
|
location: West US
|
|
|
|
plugins:
|
|
- serverless-azure-functions
|
|
|
|
functions:
|
|
hello:
|
|
handler: templates/handler.hello
|
|
events:
|
|
- http: true
|
|
x-azure-settings:
|
|
authLevel : anonymous
|
|
|
|
|