Azure Functions Cheat Sheet

Triggers, bindings, and Durable orchestration

Last Updated: November 21, 2025

Trigger Types

Trigger Use
HTTP Short-lived APIs
Timer Scheduled jobs
Queue Process messages
Cosmos DB Change feed

Commands

func init MyFunction
Bootstrap
func host start
Run locally
func azure functionapp publish
Deploy

Advice

Use Durable Functions for stateful flows and monitor app insights for timeouts.

💡 Pro Tip: Keep functions single-purpose, monitor cold starts, and use deployment slots.
← Back to DevOps & Cloud | Browse all categories | View all cheat sheets