azure-functions

Build serverless applications with Azure Functions.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "azure-functions" with this command: npx skills add bagelhole/devops-security-agent-skills/bagelhole-devops-security-agent-skills-azure-functions

Azure Functions

Build serverless applications with Azure Functions.

Create Function App

az functionapp create
--resource-group mygroup
--consumption-plan-location eastus
--runtime python
--runtime-version 3.11
--functions-version 4
--name myfunctionapp
--storage-account mystorageaccount

Function Code

import azure.functions as func

def main(req: func.HttpRequest) -> func.HttpResponse: return func.HttpResponse("Hello, World!")

Deployment

Deploy using Core Tools

func azure functionapp publish myfunctionapp

Deploy using ZIP

az functionapp deployment source config-zip
--resource-group mygroup
--name myfunctionapp
--src function.zip

Best Practices

  • Use consumption plan for variable workloads

  • Implement Durable Functions for orchestration

  • Use managed identity for authentication

  • Monitor with Application Insights

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

sops-encryption

No summary provided by upstream source.

Repository SourceNeeds Review
Security

linux-administration

No summary provided by upstream source.

Repository SourceNeeds Review
Security

linux-hardening

No summary provided by upstream source.

Repository SourceNeeds Review