azure-resource-manager-sql-dotnet
Azure SQL resource management
Developer Setup
Setup & Installation
npx skills add https://github.com/microsoft/skills --skill azure-resource-manager-sql-dotnetnpx skills add https://github.com/microsoft/skills --skill azure-resource-manager-sql-dotnetOverview
What This Skill Does
Management plane SDK for Azure SQL in .NET. Covers provisioning and configuring SQL servers, databases, elastic pools, firewall rules, and failover groups via Azure Resource Manager. Does not execute queries — use Microsoft.Data.SqlClient for data plane operations.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure.ResourceManager.Sql (.NET)
Management plane SDK for provisioning and managing Azure SQL resources via Azure Resource Manager.
⚠️ Management vs Data Plane
- This SDK (Azure.ResourceManager.Sql): Create servers, databases, elastic pools, configure firewall rules, manage failover groups
- Data Plane SDK (Microsoft.Data.SqlClient): Execute queries, stored procedures, manage connections
Installation
dotnet add package Azure.ResourceManager.Sql
dotnet add package Azure.Identity
Current Versions: Stable v1.3.0, Preview v1.4.0-beta.3
Environment Variables
AZURE_SUBSCRIPTION_ID=<your-subscription-id> # Required: Azure subscription ID
AZURE_TOKEN_CREDENTIALS=prod # Required only if DefaultAzureCredential is used in production
AZURE_TENANT_ID=<tenant-id> # For service principal auth (optional)
AZURE_CLIENT_ID=<client-id> # For service principal auth (optional)
AZURE_CLIENT_SECRET=<client-secret> # For service principal auth (optional)
Recommendations
Explore other random skills
terraform-style-guide
Generate Terraform HCL code following HashiCorp's official style conventions
terraform-search-import
Discover existing cloud resources and bulk import them into Terraform state
refactor-module
Transform monolithic Terraform configurations into reusable modules