--- id: azure-mgmt-frontdoor version: "2.0.0" license: MIT license_treatment: permissive maintenance: active --- # azure-mgmt-frontdoor — Microsoft Azure Frontdoor Management Client Library for Python License: permissive · Maintenance: active · Downloads: 212.9K/mo ## What it is and what it does This is the official Azure SDK client library for managing Azure Front Door—a global content delivery and load balancing service. It wraps the Azure control plane API, allowing you to create, update, delete, and inspect Front Door instances, routing rules, backend pools, health probes, WAF policies, and related resources programmatically from Python. Version 2.0.0 introduces breaking changes: many model properties have been reorganized under nested `properties` objects to support hybrid dictionary-and-model semantics. The library depends on azure-mgmt-core for common Azure SDK infrastructure and isodate for date handling. It requires Python 3.10+ and authenticates via Microsoft Entra using credential objects. Use it for: - Automate provisioning and configuration of Azure Front Door instances and routing rules in infrastructure-as-code pipelines. - Programmatically manage WAF policies and security rules across multiple Front Door resources. - Query and monitor Front Door health probe settings, backend pool status, and latency metrics. - Integrate Front Door management into custom Azure resource orchestration or multi-cloud deployment tools. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Manages Azure Front Door resources—CDN, load balancing, and WAF policies—via the Azure control plane API. Yes. This is the official, actively maintained Azure SDK for Front Door management. Low install friction, no known vulnerabilities, permissive MIT license, and broad Python version support (3.10–3.14). Install it if you need to manage Azure Front Door resources from Python; version 2.0.0 requires migration of code using the old flat model structure, so review the breaking changes before upgrading from earlier versions. ## Install pip install azure-mgmt-frontdoor uv add azure-mgmt-frontdoor poetry add azure-mgmt-frontdoor ## Installing azure-mgmt-frontdoor Before you install: Low friction: pure Python wheel with three lightweight runtime dependencies (isodate, azure-mgmt-core, typing-extensions). Active maintenance—last commit 2026-08-14, release 45 days old. Requires Python 3.10+. License in practice: MIT license permits commercial and private use with minimal restrictions. Quickstart: pip install azure-mgmt-frontdoor from azure.mgmt.frontdoor import FrontDoorManagementClient from azure.identity import DefaultAzureCredential import os sub_id = os.getenv("AZURE_SUBSCRIPTION_ID") client = FrontDoorManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id) Requires Azure subscription and environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET, AZURE_SUBSCRIPTION_ID. Verify before relying: - Whether version 2.0.0's hybrid model migration path is documented clearly enough for existing users. - Performance characteristics and rate limits when managing large numbers of Front Door resources. - Whether azure-identity is required as a runtime dependency or only as an optional authentication provider. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 212.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags azure front door management, azure cdn api client, azure load balancing sdk, azure waf policy management, azure frontdoor python sdk, azure-sdk, cloud-infrastructure [View on SkillFed](https://skillfed.io/packages/azure-mgmt-frontdoor) · [View on PyPI](https://pypi.org/project/azure-mgmt-frontdoor/)