Resource: auth0_branding

This resource allows you to manage branding within your Auth0 tenant. Auth0 can be customized with a look and feel that aligns with your organization's brand requirements and user expectations.

Example Usage

resource "auth0_branding" "my_brand" {
  logo_url = "https://mycompany.org/logo.png"

  colors {
    primary         = "#0059d6"
    page_background = "#000000"
  }

  universal_login {
    # Ensure that "{%- auth0:head -%}" and "{%- auth0:widget -%}"
    # are present in the body.
    body = file("universal_login_body.html")
  }
}

Schema

Optional

Read-Only

Nested Schema for colors

Optional:

Nested Schema for font

Optional:

Nested Schema for universal_login

Required:

Import

Import is supported using the following syntax:

# As this is not a resource identifiable by an ID within the Auth0 Management API,
# branding can be imported using a random string.
#
# We recommend [Version 4 UUID](https://www.uuidgenerator.net/version4)
#
# Example:
terraform import auth0_branding.my_brand "22f4f21b-017a-319d-92e7-2291c1ca36c4"