Skip to content

Instantly share code, notes, and snippets.

@johndowns
Created August 15, 2018 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johndowns/cb005b7b5390da6fec6077253932334d to your computer and use it in GitHub Desktop.
Save johndowns/cb005b7b5390da6fec6077253932334d to your computer and use it in GitHub Desktop.
{
"name": "[concat(variables('functionsAppServiceName'), '/', variables('functionName'))]",
"type": "Microsoft.Web/sites/functions",
"apiVersion": "2015-08-01",
"properties": {
"config": {
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "[variables('functionSchedule')]"
}
],
"disabled": false
},
"files": {
"run.csx": "file-contents-goes-here"
}
},
"dependsOn": [
"[resourceId('Microsoft.Web/sites', variables('functionsAppServiceName'))]"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment