Created
May 13, 2016 16:30
-
-
Save sirkirby/0add064419e9b24ddfc9fe8e7a0b05dd to your computer and use it in GitHub Desktop.
Azure function definition that uses sb queue trigger
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
{ | |
"bindings":[ | |
{ | |
"name":"myQueueItem", | |
"type":"serviceBusTrigger", | |
"direction":"in", | |
"queueName":"lunchsearch", | |
"connection":"LunchConnection", | |
"accessRights":"Manage" | |
} | |
], | |
"disabled":false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment