Last active
August 21, 2020 04:18
-
-
Save csotomon/4060205bad965df4c7a9ae0a59ed2084 to your computer and use it in GitHub Desktop.
secured azure function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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