Mariusz Nowak 4944f471b1
Prettify
2019-06-26 12:43:01 +02:00

69 lines
1.6 KiB
YAML

# Welcome to Serverless!
#
# This file is the main config file for your service.
# It's very minimal at this point and uses default values.
# You can always add more config options for more control.
# We've included some commented out config examples here.
# Just uncomment any of them to get that config option.
#
# For full config options, check the docs:
# docs.serverless.com
#
# Happy Coding!
service: azure-nodejs # NOTE: update this with your service name
# You can pin your service to only deploy with a specific Serverless version
# Check out our docs for more details
# frameworkVersion: "=X.X.X"
provider:
name: azure
location: West US 2
plugins:
- serverless-azure-functions
# you can add packaging information here
package:
# include:
# - include-me.js
# - include-me-dir/**
exclude:
# - exclude-me.js
# - exclude-me-dir/**
- local.settings.json
- .vscode/**
functions:
hello:
handler: hello.handler
events:
- http: true
x-azure-settings:
authLevel: anonymous
- http: true
x-azure-settings:
direction: out
name: res
goodbye:
handler: goodbye.handler
events:
- http: true
x-azure-settings:
authLevel: anonymous
- http: true
x-azure-settings:
direction: out
name: res
# The following are a few examples of other events you can configure:
#
# events:
# - queue: YourQueueName
# x-azure-settings:
# connection : StorageAppSettingName
# - blob:
# x-azure-settings:
# name: bindingName
# direction: in