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:
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"
}
}
}
name
(String) The name of this organization.branding
(Block List, Max: 1) Defines how to style the login pages. (see below for nested schema)display_name
(String) Friendly name of this organization.metadata
(Map of String) Metadata associated with the organization. Maximum of 10 metadata properties allowed.id
(String) The ID of this resource.branding
Optional:
colors
(Map of String) Color scheme used to customize the login pages.logo_url
(String) URL of logo to display on login page.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"