Skip to content

Instantly share code, notes, and snippets.

@csotomon
Last active August 21, 2020 04:18
Show Gist options
  • Save csotomon/4060205bad965df4c7a9ae0a59ed2084 to your computer and use it in GitHub Desktop.
Save csotomon/4060205bad965df4c7a9ae0a59ed2084 to your computer and use it in GitHub Desktop.
secured azure function
{
"scriptFile": "__init__.py",
"bindings": [
{
"authLevel": "function",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "$return"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment