Dev & Engineering ✓ Microsoft · Official rustazure-key-vaultx509-certificatescertificate-managementtls-sslcode-signingentra-id

Azure Key Vault Certificates for Rust

Guides Rust applications in creating, managing, and using X.509 certificates in Azure Key Vault.

FollowSkills review · FSRS-2.0
Use with care
53/ 100 5-point scale 2.7 / 5
1 2 3 4 5 6
1Trust17 / 25 · 3.4/5

The skill restricts use to the official crate, advises against hardcoded credentials, and distinguishes local from production identity, reducing dependency and credential risk. However, certificate creation, update, signing, and deletion can create external or sensitive effects without confirmation, least-privilege guidance, data-flow disclosure, deletion recovery, or rollback, so points are deducted.

2Reliability8 / 20 · 2.0/5

The installation, authentication, LRO, pagination, and signing examples are broadly consistent and explain Poller behavior and some dependencies. However, versions are unpinned, installation omits the Key Vault Keys crate used by the signing example, and abnormal-input, authorization, polling, and network failure diagnostics are absent. Static calibration limits the score to 10 or below.

3Adaptability9 / 15 · 3.0/5

The audience, Rust use cases, trigger phrases, and main certificate operations are reasonably clear. Non-fit boundaries, certificate-format and key-type constraints, production boundaries, Chinese-language usage, and mainland-China network reachability are not addressed, limiting evidence for precise triggering and environment fit.

4Convention9 / 15 · 3.0/5

The document is well organized with installation, environment variables, authentication, workflows, best practices, RBAC, formats, and reference links; MIT licensing, author metadata, and official-source attribution are present. It lacks an SDK version policy, changelog, explicit maintenance/update path, FAQ, and systematic troubleshooting, with some dependency assumptions hidden in examples.

5Effectiveness6 / 15 · 2.0/5

The snippets can directly guide retrieval, self-signed creation, updates, deletion, pagination, and signing, giving useful core coverage. CA-issued workflows, complete project configuration, certificate-content export, recovery behavior, and installation of the signing dependency are incomplete; static review cannot establish compilation or result correctness, so the score is capped at 7.

6Verifiability4 / 10 · 2.0/5

The skill supplies docs.rs, crates.io, and Azure SDK source references, while the repository materials show CI, evaluation workflows, and tests. The supplied evidence does not demonstrate coverage of this specific skill or provide target-skill acceptance examples or execution results; static calibration therefore caps the score at 5.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • The delete example lacks user confirmation, backup, recovery, or rollback guidance; safeguards should be added before production use.
  • The signing example uses azure_security_keyvault_keys, but the installation command does not include that crate, so generated projects may not compile directly.
  • There is no version pinning, API compatibility policy, or skill-specific test evidence; verify the current SDK and compile before adoption.
  • Mainland-China network access, proxy requirements, and offline alternatives are not documented.
See the full review method →

What does this skill do, and when should you use it?

This skill is for developers using the Azure Key Vault Certificates Rust SDK. It covers creating self-signed and CA-issued certificates, updating properties, deleting certificates, listing them with pagination, and awaiting long-running issuance operations. It also shows how to sign data with a certificate-associated key through the Key Vault Keys SDK. The guidance includes authentication, RBAC roles, certificate formats, and dependency installation, and requires the official azure_security_keyvault_certificates crate.

It guides developers through creating a CertificateClient, authenticating with DeveloperToolsCredential, retrieving certificates, starting self-signed certificate creation, awaiting the returned Poller, updating certificate tags, deleting certificates, and iterating through certificate properties with a Pager. It also demonstrates using KeyClient to sign a digest with the certificate's associated key and documents PKCS#12 and PEM content types.

  1. A Rust developer building TLS/SSL services that needs to create or manage X.509 certificates in Key Vault.
  2. A team generating self-signed certificates for local development or testing.
  3. An application that creates CA-issued certificates and must handle long-running issuance operations.
  4. A developer who needs to use a Key Vault certificate's associated key for code signing or data signing.
  5. A team using Entra ID authentication that needs certificate-specific Key Vault RBAC guidance.

What are this skill's strengths and limitations?

Pros
  • Covers the main certificate lifecycle operations plus signing with an associated key.
  • Provides copyable Rust examples for Poller, Pager, ResourceExt, and authentication.
  • Explicitly directs users to the official crate and warns against unofficial crates and version 0.21.0.
  • Includes RBAC roles, PKCS#12 and PEM formats, and credential-handling practices.
Limitations
  • Its scope is Azure Key Vault Certificates and does not replace the separate Key Vault Keys or Secrets skills.
  • The source provides no dedicated test scenarios or test-coverage evidence for this Rust skill.
  • Detailed CA policy configuration, certificate import, and rotation workflows are not covered.
  • Azure resource provisioning, permission setup, and runtime error handling remain the developer's responsibility.

How do you install this skill?

Install Rust and Cargo, then run this in the target Rust project: cargo add azure_security_keyvault_certificates azure_identity tokio futures. If the code imports azure_core types directly, also run cargo add azure_core. To install the repository collection, run npx skills add microsoft/skills and select the skill in the wizard; collection skills are installed to the selected agent directory, such as .github/skills/.

How do you use this skill?

After installation, invoke the skill with prompts such as "keyvault certificates rust", "CertificateClient rust", "create certificate rust", "self-signed certificate rust", or "X.509 rust". Set AZURE_KEYVAULT_URL, create a CertificateClient in Rust, use DeveloperToolsCredential for local development, and use ManagedIdentityCredential in production.

FAQ

Which Azure permissions are needed?
The source lists Key Vault Certificate User for using certificates and Key Vault Certificates Officer for full certificate management through Entra ID RBAC.
Which credentials should be used locally and in production?
The example uses DeveloperToolsCredential locally and recommends ManagedIdentityCredential in production. Rust does not provide one DefaultAzureCredential type.
Does certificate creation finish immediately?
No. Certificate creation is a long-running operation. begin_create_certificate returns a Poller that can be awaited directly for completion.
How can I avoid selecting the wrong Rust package?
Use only the official azure_security_keyvault_certificates crate published by the azure-sdk crates.io user. The source warns against unofficial crates and notes that official crate names use underscores.

More skills from this repository

All from microsoft/agent-skills

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 Key Vault Secrets for Rust

Guides Rust applications in securely storing and managing passwords, API keys, and connection strings in Azure Key Vault.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault Keys for Rust

A practical Rust guide for creating, managing, and using RSA, EC, and HSM-protected keys in Azure Key Vault.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for Rust

Configure Microsoft Entra ID authentication for Azure SDK clients written in Rust.

Dev & Engineering ✓ Microsoft · Official

Azure App Configuration for Java

Guides Java apps in centralizing settings, feature flags, and release snapshots.

Dev & Engineering ✓ Microsoft · Official

Azure AI Content Safety for Python

Guides Python applications in detecting harmful text and images and enforcing custom blocklists.

Dev & Engineering ✓ Microsoft · Official

Azure App Configuration for Python

Centralize Python application settings, feature flags, and dynamic configuration in Azure.

Dev & Engineering ✓ Microsoft · Official

Azure Container Registry for Python

Manage Azure container images, artifacts, and repositories from Python.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault Secrets for TypeScript

Securely store and retrieve application secrets in Azure Key Vault while managing key lifecycles from Node.js.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault Secrets for Java

Guides Java developers through secure storage, retrieval, rotation, recovery, and backup of application secrets in Azure Key Vault.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for TypeScript

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

Dev & Engineering ✓ Microsoft · Official

Azure Blob Storage for Python

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

Dev & Engineering ✓ Microsoft · Official

Azure Playwright Cloud Testing

Scale TypeScript Playwright tests on Azure-hosted browsers and publish results.

Dev & Engineering ✓ Microsoft · Official

Microsoft Entra App Registration

A practical guide to Entra app registration and OAuth integration.

Dev & Engineering ✓ Microsoft · Official

Azure Communication Common for Java

Guides Java developers through shared ACS authentication, token refresh, and communication identifier handling.

Dev & Engineering ✓ Microsoft · Official

Azure File Share for Python

Guides Python developers through secure Azure SMB share, directory, and file management.

Dev & Engineering ✓ Microsoft · Official

Azure PostgreSQL TypeScript Connector

A practical pg-based guide for secure, pooled Azure PostgreSQL access in Node.js and TypeScript.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault Keys for Java

Ground Java coding agents in secure Azure Key Vault and Managed HSM key-management workflows.

Dev & Engineering ✓ Microsoft · Official

Azure Batch Java Job Orchestration

Run and manage large-scale parallel and HPC workloads on Azure from Java.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault Keys for .NET

Guides .NET developers in managing Azure Key Vault keys and performing cryptographic operations securely.

Related skills