--- id: pulumi-auth0 version: "3.50.1" license: Apache-2.0 license_treatment: permissive maintenance: active --- # pulumi-auth0 — A Pulumi package for creating and managing auth0 cloud resources. License: permissive · Maintenance: active · Downloads: 142.3K/mo ## What it is and what it does pulumi-auth0 is a Pulumi resource provider that bridges Auth0 identity management into infrastructure-as-code workflows. It lets you define Auth0 resources—clients, rules, roles, connections, and other identity primitives—as Python code in a Pulumi program, then deploy and update them declaratively. Instead of managing Auth0 through the web console or manual API calls, you version-control your identity infrastructure alongside your application code. The package wraps the Auth0 management API and exposes it through Pulumi's resource model. You configure it with your Auth0 domain and credentials (via environment variables or Pulumi config), then instantiate Auth0 resources as Python objects. Pulumi handles state tracking, diffing, and safe updates. It's designed for teams that want Auth0 configuration treated as code—reproducible, auditable, and integrated into CI/CD pipelines. Use it for: - Automate Auth0 client and application setup across development, staging, and production environments in a single Pulumi program. - Version-control Auth0 roles, permissions, and connection configurations alongside application infrastructure. - Provision Auth0 resources as part of a multi-cloud or hybrid infrastructure deployment orchestrated by Pulumi. - Manage Auth0 API tokens, rules, and custom domains declaratively in a GitOps workflow. - Replicate Auth0 configurations across multiple tenants or organizations programmatically. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. A Pulumi resource provider that lets you declare and manage Auth0 identity and access management resources using infrastructure-as-code in Python. Yes, if you use Pulumi for infrastructure-as-code and need to manage Auth0 resources programmatically. The package is actively maintained, has low install friction, carries a permissive license, and has no known vulnerabilities. It is a straightforward fit for teams already adopting Pulumi. Not necessary if you manage Auth0 through the console or a different IaC tool. ## Install pip install pulumi-auth0 uv add pulumi-auth0 poetry add pulumi-auth0 ## Installing pulumi-auth0 Before you install: Low install friction with a pure Python wheel. Actively maintained with a release 6 days ago. Requires Python 3.9 or later and four runtime dependencies (pulumi, parver, semver, typing-extensions), all standard ecosystem packages. License in practice: Apache-2.0 permissive license allows commercial use, modification, and distribution with minimal restrictions—suitable for most organizational contexts. Quickstart: pip install pulumi_auth0 import pulumi import pulumi_auth0 as auth0 # Configure with Auth0 domain and credentials config = pulumi.Config() domain = config.require_secret('auth0:domain') # Create an Auth0 resource (e.g., client) client = auth0.Client('my-client', name='my-app', callbacks=['https://example.com/callback']) Requires Auth0 domain and API credentials (auth0:domain is required; auth0:apiToken or auth0:clientId + auth0:clientSecret for authentication). Verify before relying: - Scope and completeness of Auth0 resources supported by this provider version relative to the full Auth0 management API. - Performance characteristics when managing large numbers of Auth0 resources in a single Pulumi stack. - Compatibility with Pulumi versions prior to or significantly newer than the current release. ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 142.3K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags pulumi auth0 provider, infrastructure as code auth0, auth0 resource management, pulumi identity provider, auth0 iam automation, declarative auth0 configuration, pulumi cloud provider, infrastructure-as-code, identity-management, pulumi-provider [View on SkillFed](https://skillfed.io/packages/pulumi-auth0) · [View on PyPI](https://pypi.org/project/pulumi-auth0/)