Resource: auth0_organization

The Organizations feature represents a broad update to the Auth0 platform that allows our business-to-business (B2B) customers to better manage their partners and customers, and to customize the ways that end-users access their applications. Auth0 customers can use Organizations to:

Example Usage

resource "auth0_organization" "my_organization" {
  name         = "auth0-inc"
  display_name = "Auth0 Inc."

  branding {
    logo_url = "https://example.com/assets/icons/icon.png"
    colors = {
      primary         = "#f2f2f2"
      page_background = "#e1e1e1"
    }
  }
}

Schema

Required

Optional

Read-Only

Nested Schema for branding

Optional:

Import

Import is supported using the following syntax:

# This resource can be imported by specifying the organization ID.
#
# Example:
terraform import auth0_organization.my_organization "org_XXXXXXXXXXXXXX"