Skip to content

Instantly share code, notes, and snippets.

@ggondim
Created June 17, 2020 23:45
Show Gist options
  • Save ggondim/45ca3e63324a4d16be3dca3138dc21a9 to your computer and use it in GitHub Desktop.
Save ggondim/45ca3e63324a4d16be3dca3138dc21a9 to your computer and use it in GitHub Desktop.
Azure Monofunction example - Function trigger
{
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"route": "{*segments}"
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment