skillfed

pulumi-auth0

A Pulumi package for creating and managing auth0 cloud resources.

pulumi-auth0 v3.50.1 142.3K downloads/30d#11,217 on PyPI25
Permissive license Apache-2.0 Active released

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 on this page — 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

pulumi-auth0 on PyPI

pip

pip install pulumi-auth0

uv

uv add pulumi-auth0

poetry

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 the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 4 — parver, pulumi, semver, typing-extensions
Maintenance actively maintained — 6 days since the last release
Last repo commit
First released
Downloads 142,267/month — #11,217 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pulumi_auth0-3.50.1-py3-none-any.whl

Keywords: pulumi, auth0

Tags

pulumi auth0 providerinfrastructure as code auth0auth0 resource managementpulumi identity providerauth0 iam automationdeclarative auth0 configurationpulumi cloud provider
infrastructure-as-codeidentity-managementpulumi-provider

More Software Development packages