Skip to content

Instantly share code, notes, and snippets.

@sirkirby
Created May 13, 2016 16:30
Show Gist options
  • Save sirkirby/0add064419e9b24ddfc9fe8e7a0b05dd to your computer and use it in GitHub Desktop.
Save sirkirby/0add064419e9b24ddfc9fe8e7a0b05dd to your computer and use it in GitHub Desktop.
Azure function definition that uses sb queue trigger
{
"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