Resource: auth0_prompt_custom_text

With this resource, you can manage custom text on your Auth0 prompts. You can read more about custom texts here.

Example Usage

resource "auth0_prompt_custom_text" "example" {
  prompt   = "login"
  language = "en"
  body = jsonencode(
    {
      "login" : {
        "alertListTitle" : "Alerts",
        "buttonText" : "Continue",
        "description" : "Login to",
        "editEmailText" : "Edit",
        "emailPlaceholder" : "Email address",
        "federatedConnectionButtonText" : "Continue with $${connectionName}",
        "footerLinkText" : "Sign up",
        "footerText" : "Don't have an account?",
        "forgotPasswordText" : "Forgot password?",
        "invitationDescription" : "Log in to accept $${inviterName}'s invitation to join $${companyName} on $${clientName}.",
        "invitationTitle" : "You've Been Invited!",
        "logoAltText" : "$${companyName}",
        "pageTitle" : "Log in | $${clientName}",
        "passwordPlaceholder" : "Password",
        "separatorText" : "Or",
        "signupActionLinkText" : "$${footerLinkText}",
        "signupActionText" : "$${footerText}",
        "title" : "Welcome",
        "usernamePlaceholder" : "Username or email address"
      }
    }
  )
}

Schema

Required

Read-Only

Import

Import is supported using the following syntax:

# This resource can be imported by specifying the
# prompt and language separated by "::" (note the double colon)
# <prompt>::<language>
#
# Example
terraform import auth0_prompt_custom_text.example "login::en"