一键导入
azure-patterns
Azure Patterns: Functions, Container Apps, Cosmos DB, Azure SQL, AKS, serverless.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Azure Patterns: Functions, Container Apps, Cosmos DB, Azure SQL, AKS, serverless.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bun runtime: HTTP server, file I/O, SQLite, test runner, package manager, bundler — all-in-one JS toolchain.
Clerk: Drop-in auth UI, Organizations, User management, JWT templates, webhooks, Next.js middleware integration.
Gelişmiş masaüstü, tarayıcı ve işletim sistemi kontrol yeteneği. Görsel (koordinat tabanlı) fare/klavye otomasyonu, DOM manipülasyonu, pencere yönetimi, gelişmiş dosya, ağ ve süreç yönetimini kapsar.
Drizzle ORM: Schema definition, type-safe queries, migrations, relations, Postgres/SQLite/MySQL support.
Expo Router v3: File-based navigation, layouts, tabs, modals, deep linking, API routes, typed routes.
Flutter ile oyun geliştirme (Flame Engine vb.) ve karmaşık, büyük ölçekli mimariler kurma rehberi.
| name | azure-patterns |
| description | Azure Patterns: Functions, Container Apps, Cosmos DB, Azure SQL, AKS, serverless. |
| triggers | {"extensions":[".py",".ts",".yaml"],"directories":["azure/","infrastructure/"],"keywords":["azure","functions","container apps","cosmos db","azure sql","aks","app service","bicep","arm"]} |
| auto_load_when | Building on Microsoft Azure or designing enterprise architectures |
| agent | cloud-architect |
| tools | ["Read","Write","Bash"] |
Focus: Enterprise integration, hybrid cloud, managed services
When to use what:
├── Azure Functions
│ ├── Event-driven, HTTP, timers
│ ├── Premium: VNET, longer running
│ └── Consumption: pay per execution
│
├── Container Apps
│ ├── Microservices, event-driven
│ ├── KEDA-based autoscaling
│ └── Dapr integration for state
│
├── App Service
│ ├── Web apps (ASP.NET, Node, Python)
│ ├── PaaS for web apps
│ └── Managed, easy to use
│
├── AKS (Kubernetes)
│ ├── Full Kubernetes
│ ├── Enterprise features
│ └── Windows containers support
│
└── Azure VMs
│ ├── Legacy lift-and-shift
│ └── Specific requirements
Database selection:
├── Cosmos DB
│ ├── Global distributed NoSQL
│ ├── Multiple APIs (SQL, MongoDB, Cassandra, Gremlin)
│ ├── Multi-master, any region write
│ └── Serverless option
│
├── Azure SQL
│ ├── Managed SQL Server
│ ├── Intelligent database (auto-tuning)
│ └── Hyperscale for large DBs
│
├── PostgreSQL / MySQL
│ ├── Flexible Server (managed)
│ └── Serverless option
│
├── Azure Cache for Redis
│ ├── Caching, session store
│ └── Redis Enterprise for clustering
│
└── Blob Storage
├── Object storage
├── Hot/Cool/Archive tiers
└── Azure Data Lake integration
Azure Integration Services:
├── Service Bus
│ ├── Enterprise messaging
│ ├── Topics for pub/sub
│ └── Reliable delivery
│
├── Logic Apps
│ ├── No-code workflow automation
│ ├── 400+ connectors
│ └── Visual workflow designer
│
├── API Management
│ ├── API gateway, developer portal
│ ├── Rate limiting, caching
│ └── Mock APIs for development
│
├── Event Grid
│ ├── Event routing
│ └── Push-based, near real-time
│
└── Functions + Service Bus
└── Durable execution patterns
Azure Enterprise Patterns:
├── Identity
│ ├── Microsoft Entra ID (formerly AAD)
│ ├── SSO, MFA, Conditional Access
│ └── RBAC, managed identities
│
├── Hybrid Cloud
│ ├── Azure Arc (hybrid management)
│ ├── Azure Stack (on-prem Azure)
│ └── ExpressRoute (private connection)
│
├── Governance
│ ├── Azure Policy
│ ├── Management groups
│ └── Blueprints for compliance
│
└── Monitoring
│ ├── Application Insights
│ ├── Log Analytics
└── Azure Monitor
IaC in Azure:
├── ARM Templates
│ ├── JSON-based, verbose
│ └── Native Azure
│
├── Bicep (recommended)
│ ├── Simplified, transpiles to ARM
│ └── Better syntax, modular
│
├── Terraform
├── Multi-cloud, popular
└── Official Azure provider
│
└── Ansible
├── Configuration management
└── Azure modules available
❌ Using VMs for new workloads
✅ App Service / Container Apps / Functions
❌ Single region for production
✅ Multi-region with Traffic Manager
❌ Not using managed identities
✅ System/user assigned MI for RBAC
❌ No Azure Policy enforcement
✅ Governance from day one
❌ Ignoring Azure Cost Management
✅ Budget alerts, cost analysis
| Service | Use Case | Key Feature |
|---|---|---|
| Functions | Serverless | Event-driven |
| Container Apps | Microservices | KEDA scaling |
| App Service | Web apps | Managed |
| Cosmos DB | Global NoSQL | Multi-API |
| Azure SQL | Managed SQL | Intelligent |
| Service Bus | Messaging | Enterprise |
| AKS | Kubernetes | Enterprise |
| Blob Storage | Object storage | Tiers |