Dev & Engineering ✓ Microsoft · Official azure-mysqlmysql-flexible-serverdotnetazure-resource-managerdatabase-managementhigh-availability

Azure MySQL Flexible Server for .NET

Manage Azure MySQL Flexible Server infrastructure and databases from .NET with the Azure Resource Manager SDK.

FollowSkills review · FSRS-2.0
Not recommended
45/ 100 5-point scale 2.3 / 5
Trust12 / 25 · 2.4/5

The document shows Azure authentication guidance, environment variables, and some security practices, including managed identity, private endpoints, and Entra ID; however, examples contain plaintext administrator passwords, password-bearing connection strings, and a 0.0.0.0 firewall rule. It does not require confirmation for high-impact operations or explain permission scope, data flow, rollback, or secret handling, so points are deducted.

Reliability6 / 20 · 1.5/5

The skill covers major paths including creation, updates, backup, restore, start/stop, deletion, and partial HTTP error handling with user-facing messages. However, it provides only static snippets, with no skill-specific test or compilation evidence; several examples have uncertain context, API-version compatibility, and async correctness, while abnormal-input handling and recovery guidance are thin. The score is conservatively limited by static-review calibration.

Adaptability9 / 15 · 3.0/5

The name, description, trigger terms, and MySQL Flexible Server scenario are reasonably clear, and common database-management needs are covered. However, input/output contracts, non-fit scenarios, least-privilege requirements, and negative trigger boundaries are not defined, and there is no Chinese-language guidance or mainland-China reachability analysis, so points are deducted.

Convention8 / 15 · 2.7/5

The SKILL.md has clear sections for installation, environment variables, authentication, workflows, types, SKUs, best practices, errors, related SDKs, references, license, author, and version. It lacks a changelog, explicit maintenance owner or update path, verifiable version-change context, and sufficiently detailed limitations and troubleshooting, so points are deducted.

Effectiveness6 / 15 · 2.0/5

The document provides directly reusable C# patterns for servers, databases, firewall rules, configuration, administrators, backup/restore, lifecycle operations, and scaling, supporting the core task. However, it contains no reproducible successful output or skill-specific validation, and production use requires substantial manual review of security defaults and API correctness, so the score remains below the static ceiling.

Verifiability4 / 10 · 2.0/5

The files provide package, version, API-version, and official-reference metadata; the repository also shows generic CI, evaluation workflows, and harness tests. But the supplied material does not demonstrate skill-specific tests, compilation results, or third-party execution evidence for this path, and no execution was performed, so only limited static evidence credit is justified.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • Do not copy the example administrator password or place tokens in connection strings; use secret management and least-privilege identities.
  • The 0.0.0.0 firewall example broadens network access and requires explicit validation of scope, authorization, and rollback before use.
  • Compile and verify every API, async call, and restore parameter against the currently selected Azure.ResourceManager.MySql version before production use.
  • Delete, restore, scale, start/stop, and firewall operations can affect external resources or costs, but the skill defines no confirmation workflow.
See the full review method →

What it does & when to use it

This skill helps .NET developers use Azure.ResourceManager.MySql to manage MySQL Flexible Server deployments. It covers server creation, databases, firewall rules, configuration, backups, high availability, Entra ID administrators, lifecycle operations, and restore workflows. The documented SDK version is v1.2.0 GA with API version 2023-12-30. The scope is Flexible Server only; Single Server is deprecated and scheduled for retirement.

It shows how to install Azure.ResourceManager.MySql and Azure.Identity, authenticate with DefaultAzureCredential or a specific credential, and create an ArmClient. The examples create, list, update, scale, stop, start, restart, and delete servers; create databases; configure IP firewall rules and server parameters; configure Entra ID administrators; list backups; perform point-in-time restore; and handle Azure RequestFailedException errors. It also provides ADO.NET and Entra ID token connection-string examples.

  1. A .NET infrastructure engineer needs to provision and configure an Azure MySQL Flexible Server.
  2. An application team needs to create databases, tune server parameters, and restrict access with firewall rules.
  3. A production team needs zone-redundant high availability, backup retention, and auto-growing storage.
  4. An operator needs to inspect backups, restore to a point in time, stop development servers, or resize compute and storage.
  5. A team wants Azure-native authentication through DefaultAzureCredential and Entra ID administration.

Pros & cons

Pros
  • Covers the main Flexible Server management lifecycle plus databases, firewall, configuration, backups, restore, HA, and Entra ID administration.
  • Includes copyable C# examples, resource hierarchy, key type references, and Azure error-handling patterns.
  • Provides explicit guidance for Flexible Server, DefaultAzureCredential, zone-redundant HA, backup retention, and storage auto-grow.
  • Released under the MIT license as part of Microsoft's maintained Agent Skills collection.
Limitations
  • It is scoped to MySQL Flexible Server and does not target the deprecated Single Server model.
  • Examples contain plaintext passwords and placeholders, so production secret handling must be added separately.
  • The source does not provide independent test results or platform coverage for this specific skill.
  • Use requires Azure credentials, subscription/resource-group context, permissions, and network access; the skill does not provision that environment itself.

How to install

To install the collection, run npx skills add microsoft/skills and select the required skill in the wizard. The README says skills are installed into the selected agent's directory, such as .github/skills/ for GitHub Copilot. The source does not provide a dedicated installation command for this individual skill. It also documents manual cloning, but not a skill-specific copy command from .github/plugins/azure-sdk-dotnet/skills/azure-resource-manager-mysql-dotnet/.

How to use

Install the packages with dotnet add package Azure.ResourceManager.MySql and dotnet add package Azure.Identity. Then use a request containing a documented trigger such as “MySQL Flexible Server” or “MySQL firewall,” for example: “Create a zone-redundant MySQL Flexible Server with Azure.ResourceManager.MySql and DefaultAzureCredential, then add a database and firewall rule.” Set AZURE_SUBSCRIPTION_ID, AZURE_RESOURCE_GROUP, and AZURE_MYSQL_SERVER_NAME; when using DefaultAzureCredential in production, also set AZURE_TOKEN_CREDENTIALS=prod.

Compared to similar skills

Unlike MySqlConnector, this skill uses Azure.ResourceManager.MySql to manage Azure-hosted server and infrastructure resources. MySqlConnector is for application-level MySQL data access. They can be used together, but this skill is not a general SQL query or data-access library.

FAQ

Does this skill manage SQL queries and application data?
Not primarily. It focuses on Azure MySQL Flexible Server resource management; application data access should use ADO.NET or MySqlConnector.
What Azure context is required?
At minimum, the documented setup requires an Azure subscription ID, resource group, MySQL Flexible Server name, Azure credentials, and appropriate permissions.
Does it support Single Server?
The documented scope is Flexible Server. The SKILL.md states that Single Server is deprecated and scheduled for retirement.
Can the examples be copied directly into production?
They should be adapted first. Replace sample passwords and placeholders, then configure authentication, networking, backups, HA, and monitoring for the workload.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Identity for Python

A practical skill for securing Python Azure applications with Microsoft Entra ID credentials.

Dev & Engineering ✓ Microsoft · Official

Azure Event Hubs Java Skill

Build production-oriented Java event streaming applications on Azure Event Hubs.

Dev & Engineering ✓ Microsoft · Official

Azure Tables for Python

A practical guide to building authenticated Azure Tables applications with Python entity CRUD, queries, and partition-scoped batch operations.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for TypeScript

Configure secure, flexible Microsoft Entra ID authentication for TypeScript Azure applications.

Automation & Ops ✓ Microsoft · Official

Azure Reliability Advisor

Assess and improve reliability for Azure Functions and App Service.

Dev & Engineering ✓ Microsoft · Official

Azure Cloud Architect

Guides coding agents through production-grade Azure architecture design and review using Azure Architecture Center practices.

Dev & Engineering ✓ Microsoft · Official

Azure AI Text Analytics for Python

Guides Python developers through Azure-powered text analysis and NLP workflows.

Automation & Ops ✓ Microsoft · Official

Azure Resource Architecture Visualizer

Analyze Azure resource groups and turn their dependencies into detailed Mermaid architecture diagrams.

Dev & Engineering ✓ Microsoft · Official

Azure Maps for .NET

Build .NET location features for search, routing, maps, geolocation, and weather.

Dev & Engineering ✓ Microsoft · Official

Azure AI Vision Image Analysis

Guides Python coding agents in implementing Azure AI Vision image understanding.

Dev & Engineering ✓ Microsoft · Official

Azure Blob Storage for Python

Guides secure, production-minded Blob Storage operations in Python.

Dev & Engineering ✓ Microsoft · Official

Azure Queue Storage for Python

Gives coding agents reliable Python patterns for secure Azure Queue Storage messaging and asynchronous task processing.

Automation & Ops ✓ Microsoft · Official

Azure AI Gateway Governance

Use Azure API Management to govern traffic across AI models, MCP tools, and agents.

Automation & Ops ✓ Microsoft · Official

AKS Automatic Readiness

Assess Kubernetes workloads for AKS Automatic compatibility and identify migration blockers before you switch.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB ARM for .NET

Provision and manage Azure Cosmos DB resources from .NET through ARM.

Dev & Engineering ✓ Microsoft · Official

Azure Playwright Workspace Manager

Provision and manage Microsoft Playwright Testing workspaces with .NET and Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB for Python

A practical guide for building reliable Python applications on Azure Cosmos DB’s NoSQL API.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault SDK for Python

Gives Python coding agents practical guidance for securely managing Azure Key Vault secrets, keys, and certificates.

Dev & Engineering ✓ Microsoft · Official

Azure API Management for Python

Gives coding agents practical Python SDK patterns for managing Azure API Management services, APIs, products, subscriptions, and policies.

Dev & Engineering ✓ Microsoft · Official

Azure Monitor Query for Python

Generate Python code for querying Azure Monitor logs and metrics.

Related skills