--- id: azure-mgmt-keyvault version: "14.0.1" license: unclear license_treatment: unclear maintenance: active --- # azure-mgmt-keyvault — Microsoft Azure Keyvault Management Client Library for Python License: unclear · Maintenance: active · Downloads: 9.8M/mo ## What it is and what it does This is the Microsoft Azure Keyvault Management Client Library for Python. It provides programmatic access to create, update, delete, and manage Azure Key Vault resources—including vaults, encryption keys, secrets, and managed hardware security modules (HSMs)—via the Azure Resource Manager API. The package wraps Azure's REST API into Python objects and operations, allowing developers to automate Key Vault infrastructure as code. The library depends on isodate, azure-mgmt-core, and typing-extensions. It requires Python 3.9+ and Azure Active Directory authentication via environment variables (AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_SUBSCRIPTION_ID). Recent versions (13.0.0+) introduced hybrid models and system_data properties on resources; version 14.0.1 fixed an API version replacement bug in vault listing. Use it for: - Automate creation and lifecycle management of Azure Key Vaults across multiple subscriptions in CI/CD pipelines. - Programmatically manage encryption keys and secrets stored in Key Vault from Python applications. - Configure network rules, private endpoints, and access policies for Key Vault resources at scale. - Monitor and audit Key Vault operations through resource properties and system metadata. - Manage managed HSM instances and their associated keys and security domains. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Manages Azure Key Vault resources—vaults, keys, secrets, and managed HSMs—through the Azure Resource Manager API. Yes. This is the official Azure SDK client for Key Vault management, actively maintained with no known vulnerabilities, low install friction, and broad Python version support (3.9–3.13). Install it if you need to manage Azure Key Vault infrastructure from Python. Prerequisite: Azure subscription and proper credential configuration via environment variables. ## Install pip install azure-mgmt-keyvault uv add azure-mgmt-keyvault poetry add azure-mgmt-keyvault ## Installing azure-mgmt-keyvault Before you install: Low friction; pure Python wheel with three lightweight runtime dependencies. Actively maintained with recent releases; last commit 2026-08-14. Supports Python 3.9+. Quickstart: pip install azure-mgmt-keyvault from azure.mgmt.keyvault import KeyVaultManagementClient from azure.identity import DefaultAzureCredential import os sub_id = os.getenv("AZURE_SUBSCRIPTION_ID") client = KeyVaultManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id) Requires Python 3.9+, Azure subscription, and environment variables AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_SUBSCRIPTION_ID configured for authentication. Verify before relying: - Whether additional Azure SDK packages beyond the listed runtime deps are required for typical authentication workflows. - Scope and completeness of Key Vault operations covered (e.g., key rotation, backup/restore, network rules). - License terms and conditions (license_treatment marked unclear in metadata). ## Package facts - License: not declared (unclear) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 9.8M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags azure key vault management, azure keyvault client library, azure resource manager keyvault, manage azure vaults programmatically, azure hsm management, azure key vault operations, azure-sdk, key-management, cloud-infrastructure [View on SkillFed](https://skillfed.io/packages/azure-mgmt-keyvault) · [View on PyPI](https://pypi.org/project/azure-mgmt-keyvault/)