Dev & Engineering ✓ Microsoft · Official azurepostgresqldotnetresource-managementflexible-serverhigh-availabilityfirewall-rules

Azure PostgreSQL Flexible Server for .NET

Manage Azure PostgreSQL Flexible Server deployments and operations with .NET.

FollowSkills review · FSRS-2.0
Not recommended
35/ 100 5-point scale 1.8 / 5
Trust7 / 25 · 1.4/5

The skill covers Azure resource management, authentication, firewall, backup, and destructive operations such as deletion, exposing external side effects. It lists some environment variables and recommends DefaultAzureCredential, but examples embed an administrator password and connection-string password and use Trust Server Certificate=true; deletion, stopping, failover, and broad Azure-service firewall access lack confirmation, least-privilege guidance, rollback, or recovery instructions. The main risks are visible, but controls for isolation, confirmation, secret handling, and recovery are incomplete, so the score is substantially reduced.

Reliability5 / 20 · 1.3/5

The document supplies multiple C# workflows and basic exception handling, but no skill-specific tests or executable verification are provided. The use of GetDefaultSubscriptionAsync().Result can introduce async blocking, required environment variables are declared but not actually consumed in the examples, and SDK/API version details may be inconsistent. Static evidence supports only a limited plausible happy path; abnormal-input handling and failure diagnostics are thin, keeping the score below 10.

Adaptability8 / 15 · 2.7/5

Triggers, target SDK, Flexible Server scope, and scenarios covering servers, databases, firewall, backup, and HA are reasonably clear, and Single Server deprecation is noted. However, non-fit cases, production-versus-development boundaries, regional/version constraints, Chinese-language support, and mainland-China reachability are not addressed, so full marks are not justified.

Convention7 / 15 · 2.3/5

The skill includes front matter, installation, authentication, resource hierarchy, core workflows, type and SKU/version/HA references, best practices, error handling, related SDKs, and clear license/author metadata. It lacks FAQs, known limitations, a changelog, explicit maintenance ownership, and a clear update path; the 1.0.0 metadata also differs from the body’s v1.2.0 SDK and preview API statements. These governance and consistency gaps reduce the score.

Effectiveness5 / 15 · 1.7/5

The content covers common PostgreSQL Flexible Server management tasks and offers directly useful reference snippets for experienced Azure SDK developers. However, there is no skill-specific acceptance evidence, build/run evidence, or complete prerequisite coverage; hardcoded secrets, fixed names/regions, and potentially unsafe TLS/firewall choices require substantial review and modification. Under static calibration, the core value is plausible but correctness and direct usability are insufficiently demonstrated.

Verifiability3 / 10 · 1.5/5

The skill provides substantial code, type, and version claims, while the repository materials show a generic test harness and CI configuration. They do not provide skill-specific acceptance criteria, test coverage, CI evidence for this path, or third-party execution results. Key API, version, and behavioral claims therefore cannot be independently reproduced from the supplied material, warranting only limited verifiability.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • Do not copy the administrator password or connection-string examples; use secure secret storage, token-based authentication, and avoid Trust Server Certificate=true.
  • Deletion, stopping, restarting, failover, scaling, restore, and firewall changes have external effects; add explicit confirmation, permission review, backups, and recovery procedures before execution.
  • Before adoption, compile and validate every API, enum, region, and PostgreSQL version against the intended Azure.ResourceManager.PostgreSql version; no skill-specific test evidence is supplied.
  • Confirm Azure service reachability in the target environment and document mainland-China network, regional availability, and compliance constraints.
See the full review method →

What it does & when to use it

This skill provides .NET guidance for the Azure.ResourceManager.PostgreSql SDK and PostgreSQL Flexible Server. It covers servers, databases, firewall rules, configurations, backups, high availability, Entra ID administrators, read replicas, and lifecycle operations. It also includes authentication, resource hierarchy, SDK type references, error handling, and connection examples. It fits .NET engineers automating Azure PostgreSQL infrastructure through Azure Resource Manager; Single Server is outside its scope and is deprecated.

It shows how to install Azure.ResourceManager.PostgreSql and Azure.Identity, authenticate with ArmClient, and use C# to create, update, list, and delete PostgreSQL Flexible Server resources. The examples also manage databases, IP firewall rules, server parameters, backups, point-in-time restores, read replicas, Entra ID administrators, high availability, scaling, and start/stop/restart operations. It includes password-based and Entra ID token-based PostgreSQL connection examples.

  1. A .NET infrastructure engineer needs to provision PostgreSQL Flexible Server with selected SKU, storage, backup, and authentication settings.
  2. A platform team needs to automate PostgreSQL servers, databases, and firewall rules across Azure resource groups.
  3. A production team needs zone-redundant high availability, an Entra ID administrator, or a read replica.
  4. A development team needs to stop and start non-production servers or restore a server to a point in time.
  5. An application team needs to distinguish Azure resource management from PostgreSQL data access through Npgsql.

Pros & cons

Pros
  • Covers the main PostgreSQL Flexible Server management lifecycle from creation through deletion.
  • Provides copyable asynchronous C# examples for authentication, operations, error handling, and connections.
  • Includes concrete guidance for DefaultAzureCredential, Entra ID, high availability, backups, and read replicas.
  • The repository is MIT-licensed and actively maintained.
Limitations
  • It focuses on PostgreSQL Flexible Server and does not cover Single Server, which is deprecated and scheduled for retirement.
  • The examples contain placeholder passwords and resource identifiers; production deployments require their own secret and environment handling.
  • The source provides no independent test results or platform coverage for this individual skill.
  • The documented API version is 2023-12-01-preview, while the package version is listed as v1.2.0 GA.

How to install

Run npx skills add microsoft/skills and select this skill in the installation wizard. For manual installation, clone https://github.com/microsoft/skills and copy .github/plugins/azure-sdk-dotnet/skills/azure-resource-manager-postgresql-dotnet/ into the target agent's skills directory, such as .github/skills/ for GitHub Copilot. The collection is licensed under MIT.

How to use

After installation, prompt a coding agent with something like: “Use Azure.ResourceManager.PostgreSql and DefaultAzureCredential to create a PostgreSQL Flexible Server with a database, firewall rule, and zone-redundant high availability.” Trigger terms include PostgreSQL, PostgreSqlFlexibleServer, Azure Database for PostgreSQL, PostgreSQL firewall, PostgreSQL backup, and Postgres. Prepare an Azure subscription, resource group, and server name; the examples also use AZURE_SUBSCRIPTION_ID, AZURE_RESOURCE_GROUP, and AZURE_POSTGRESQL_SERVER_NAME.

Compared to similar skills

This skill uses Azure.ResourceManager.PostgreSql for Azure resource management. For application-level PostgreSQL data access, the source lists Npgsql and Npgsql.EntityFrameworkCore.PostgreSQL as related SDKs. Azure.ResourceManager.MySql is a related MySQL management SDK, not an alternative implementation for PostgreSQL.

FAQ

Does this skill cover PostgreSQL application data access?
Not primarily. It manages Flexible Server resources; the source lists Npgsql and Npgsql.EntityFrameworkCore.PostgreSQL for data access.
What Azure configuration is required?
The source requires an Azure subscription ID, resource group name, and PostgreSQL Flexible Server name, with authentication through DefaultAzureCredential or a specific credential. Exact RBAC permissions are not documented.
How does it handle provisioning failures?
The examples catch RequestFailedException for 409 conflicts, 400 invalid configurations, and other Azure errors.
Does using it incur a fee?
The repository is MIT-licensed, but the source does not provide pricing information for the skill or Azure resources.

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