Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created November 17, 2017 00:37
Show Gist options
  • Save justinyoo/c0d341c96023c321367d3008d3e96ec3 to your computer and use it in GitHub Desktop.
Save justinyoo/c0d341c96023c321367d3008d3e96ec3 to your computer and use it in GitHub Desktop.
Outbound IP Registration to Azure SQL Using Azure Functions
public static class UpdateFirewallRulesTimerTrigger
{
[FunctionName("UpdateFirewallRulesTimerTrigger")]
public static async Task Run(
[TimerTrigger("0 0 0 * * *")]TimerInfo myTimer,
TraceWriter log)
{
// Paste the same code here.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment