Auth0 Deploy-CLI: Switch Between Classic and New Universal Login Experience

Problem statement

Is it possible to switch between Classic and New Universal Login experience when using the Deploy-CLI?

Solution

Set the universal_login_experience attribute of the prompts to the values new or classic to set your tenant to use the New Universal Login experience and Classic respectively. Please refer to the examples below.

In the directory structure inside the file prompts/prompts.json:

{
 "universal_login_experience": "new"
}

In the YAML structure inside the tenant.yaml file:

prompts:
  universal_login_experience: new

Related References