Tenant

With this resource, you can manage Auth0 tenants, including setting logos and support contact information, setting error pages, and configuring default tenant behaviors.

Example Usage

using System.IO;
using Pulumi;
using Auth0 = Pulumi.Auth0;

class MyStack : Stack
{
    public MyStack()
    {
        var tenant = new Auth0.Tenant("tenant", new Auth0.TenantArgs
        {
            AllowedLogoutUrls = 
            {
                "http://mysite/logout",
            },
            ChangePassword = new Auth0.Inputs.TenantChangePasswordArgs
            {
                Enabled = true,
                Html = File.ReadAllText("./password_reset.html"),
            },
            DefaultAudience = "<client_id>",
            DefaultDirectory = "Connection-Name",
            ErrorPage = new Auth0.Inputs.TenantErrorPageArgs
            {
                Html = File.ReadAllText("./error.html"),
                ShowLogLink = true,
                Url = "http://mysite/errors",
            },
            FriendlyName = "Tenant Name",
            GuardianMfaPage = new Auth0.Inputs.TenantGuardianMfaPageArgs
            {
                Enabled = true,
                Html = File.ReadAllText("./guardian_multifactor.html"),
            },
            PictureUrl = "http://mysite/logo.png",
            SandboxVersion = "8",
            SessionLifetime = 46000,
            SupportEmail = "support@mysite",
            SupportUrl = "http://mysite/support",
        });
    }

}

Coming soon!

import pulumi
import pulumi_auth0 as auth0

tenant = auth0.Tenant("tenant",
    allowed_logout_urls=["http://mysite/logout"],
    change_password={
        "enabled": True,
        "html": (lambda path: open(path).read())("./password_reset.html"),
    },
    default_audience="<client_id>",
    default_directory="Connection-Name",
    error_page={
        "html": (lambda path: open(path).read())("./error.html"),
        "showLogLink": True,
        "url": "http://mysite/errors",
    },
    friendly_name="Tenant Name",
    guardian_mfa_page={
        "enabled": True,
        "html": (lambda path: open(path).read())("./guardian_multifactor.html"),
    },
    picture_url="http://mysite/logo.png",
    sandbox_version="8",
    session_lifetime=46000,
    support_email="support@mysite",
    support_url="http://mysite/support")
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
import * as fs from "fs";

const tenant = new auth0.Tenant("tenant", {
    allowedLogoutUrls: ["http://mysite/logout"],
    changePassword: {
        enabled: true,
        html: fs.readFileSync("./password_reset.html", "utf-8"),
    },
    defaultAudience: "<client_id>",
    defaultDirectory: "Connection-Name",
    errorPage: {
        html: fs.readFileSync("./error.html", "utf-8"),
        showLogLink: true,
        url: "http://mysite/errors",
    },
    friendlyName: "Tenant Name",
    guardianMfaPage: {
        enabled: true,
        html: fs.readFileSync("./guardian_multifactor.html", "utf-8"),
    },
    pictureUrl: "http://mysite/logo.png",
    sandboxVersion: "8",
    sessionLifetime: 46000,
    supportEmail: "support@mysite",
    supportUrl: "http://mysite/support",
});

Create a Tenant Resource

new Tenant(name: string, args?: TenantArgs, opts?: CustomResourceOptions);
def Tenant(resource_name, opts=None, allowed_logout_urls=None, change_password=None, default_audience=None, default_directory=None, default_redirection_uri=None, enabled_locales=None, error_page=None, flags=None, friendly_name=None, guardian_mfa_page=None, idle_session_lifetime=None, picture_url=None, sandbox_version=None, session_lifetime=None, support_email=None, support_url=None, universal_login=None, __props__=None);
func NewTenant(ctx *Context, name string, args *TenantArgs, opts ...ResourceOption) (*Tenant, error)
public Tenant(string name, TenantArgs? args = null, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args TenantArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args TenantArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args TenantArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

Tenant Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The Tenant resource accepts the following input properties:

AllowedLogoutUrls List<string>

List(String). URLs that Auth0 may redirect to after logout.

ChangePassword TenantChangePasswordArgs

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

DefaultAudience string

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

DefaultDirectory string

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

DefaultRedirectionUri string

String. The default absolute redirection uri, must be https and cannot contain a fragment.

EnabledLocales List<string>
ErrorPage TenantErrorPageArgs

List(Resource). Configuration settings for error pages. For details, see Error Page.

Flags TenantFlagsArgs

List(Resource). Configuration settings for tenant flags. For details, see Flags.

FriendlyName string

String. Friendly name for the tenant.

GuardianMfaPage TenantGuardianMfaPageArgs

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

IdleSessionLifetime int

Integer. Number of hours during which a session can be inactive before the user must log in again.

PictureUrl string

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

SandboxVersion string

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

SessionLifetime int

Integer. Number of hours during which a session will stay valid.

SupportEmail string

String. Support email address for authenticating users.

SupportUrl string

String. Support URL for authenticating users.

UniversalLogin TenantUniversalLoginArgs

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

AllowedLogoutUrls []string

List(String). URLs that Auth0 may redirect to after logout.

ChangePassword TenantChangePassword

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

DefaultAudience string

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

DefaultDirectory string

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

DefaultRedirectionUri string

String. The default absolute redirection uri, must be https and cannot contain a fragment.

EnabledLocales []string
ErrorPage TenantErrorPage

List(Resource). Configuration settings for error pages. For details, see Error Page.

Flags TenantFlags

List(Resource). Configuration settings for tenant flags. For details, see Flags.

FriendlyName string

String. Friendly name for the tenant.

GuardianMfaPage TenantGuardianMfaPage

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

IdleSessionLifetime int

Integer. Number of hours during which a session can be inactive before the user must log in again.

PictureUrl string

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

SandboxVersion string

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

SessionLifetime int

Integer. Number of hours during which a session will stay valid.

SupportEmail string

String. Support email address for authenticating users.

SupportUrl string

String. Support URL for authenticating users.

UniversalLogin TenantUniversalLogin

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

allowedLogoutUrls string[]

List(String). URLs that Auth0 may redirect to after logout.

changePassword TenantChangePassword

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

defaultAudience string

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

defaultDirectory string

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

defaultRedirectionUri string

String. The default absolute redirection uri, must be https and cannot contain a fragment.

enabledLocales string[]
errorPage TenantErrorPage

List(Resource). Configuration settings for error pages. For details, see Error Page.

flags TenantFlags

List(Resource). Configuration settings for tenant flags. For details, see Flags.

friendlyName string

String. Friendly name for the tenant.

guardianMfaPage TenantGuardianMfaPage

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

idleSessionLifetime number

Integer. Number of hours during which a session can be inactive before the user must log in again.

pictureUrl string

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

sandboxVersion string

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

sessionLifetime number

Integer. Number of hours during which a session will stay valid.

supportEmail string

String. Support email address for authenticating users.

supportUrl string

String. Support URL for authenticating users.

universalLogin TenantUniversalLogin

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

allowed_logout_urls List[str]

List(String). URLs that Auth0 may redirect to after logout.

change_password Dict[TenantChangePassword]

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

default_audience str

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

default_directory str

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

default_redirection_uri str

String. The default absolute redirection uri, must be https and cannot contain a fragment.

enabled_locales List[str]
error_page Dict[TenantErrorPage]

List(Resource). Configuration settings for error pages. For details, see Error Page.

flags Dict[TenantFlags]

List(Resource). Configuration settings for tenant flags. For details, see Flags.

friendly_name str

String. Friendly name for the tenant.

guardian_mfa_page Dict[TenantGuardianMfaPage]

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

idle_session_lifetime float

Integer. Number of hours during which a session can be inactive before the user must log in again.

picture_url str

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

sandbox_version str

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

session_lifetime float

Integer. Number of hours during which a session will stay valid.

support_email str

String. Support email address for authenticating users.

support_url str

String. Support URL for authenticating users.

universal_login Dict[TenantUniversalLogin]

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

Outputs

All input properties are implicitly available as output properties. Additionally, the Tenant resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing Tenant Resource

Get an existing Tenant resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: TenantState, opts?: CustomResourceOptions): Tenant
static get(resource_name, id, opts=None, allowed_logout_urls=None, change_password=None, default_audience=None, default_directory=None, default_redirection_uri=None, enabled_locales=None, error_page=None, flags=None, friendly_name=None, guardian_mfa_page=None, idle_session_lifetime=None, picture_url=None, sandbox_version=None, session_lifetime=None, support_email=None, support_url=None, universal_login=None, __props__=None);
func GetTenant(ctx *Context, name string, id IDInput, state *TenantState, opts ...ResourceOption) (*Tenant, error)
public static Tenant Get(string name, Input<string> id, TenantState? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

AllowedLogoutUrls List<string>

List(String). URLs that Auth0 may redirect to after logout.

ChangePassword TenantChangePasswordArgs

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

DefaultAudience string

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

DefaultDirectory string

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

DefaultRedirectionUri string

String. The default absolute redirection uri, must be https and cannot contain a fragment.

EnabledLocales List<string>
ErrorPage TenantErrorPageArgs

List(Resource). Configuration settings for error pages. For details, see Error Page.

Flags TenantFlagsArgs

List(Resource). Configuration settings for tenant flags. For details, see Flags.

FriendlyName string

String. Friendly name for the tenant.

GuardianMfaPage TenantGuardianMfaPageArgs

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

IdleSessionLifetime int

Integer. Number of hours during which a session can be inactive before the user must log in again.

PictureUrl string

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

SandboxVersion string

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

SessionLifetime int

Integer. Number of hours during which a session will stay valid.

SupportEmail string

String. Support email address for authenticating users.

SupportUrl string

String. Support URL for authenticating users.

UniversalLogin TenantUniversalLoginArgs

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

AllowedLogoutUrls []string

List(String). URLs that Auth0 may redirect to after logout.

ChangePassword TenantChangePassword

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

DefaultAudience string

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

DefaultDirectory string

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

DefaultRedirectionUri string

String. The default absolute redirection uri, must be https and cannot contain a fragment.

EnabledLocales []string
ErrorPage TenantErrorPage

List(Resource). Configuration settings for error pages. For details, see Error Page.

Flags TenantFlags

List(Resource). Configuration settings for tenant flags. For details, see Flags.

FriendlyName string

String. Friendly name for the tenant.

GuardianMfaPage TenantGuardianMfaPage

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

IdleSessionLifetime int

Integer. Number of hours during which a session can be inactive before the user must log in again.

PictureUrl string

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

SandboxVersion string

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

SessionLifetime int

Integer. Number of hours during which a session will stay valid.

SupportEmail string

String. Support email address for authenticating users.

SupportUrl string

String. Support URL for authenticating users.

UniversalLogin TenantUniversalLogin

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

allowedLogoutUrls string[]

List(String). URLs that Auth0 may redirect to after logout.

changePassword TenantChangePassword

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

defaultAudience string

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

defaultDirectory string

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

defaultRedirectionUri string

String. The default absolute redirection uri, must be https and cannot contain a fragment.

enabledLocales string[]
errorPage TenantErrorPage

List(Resource). Configuration settings for error pages. For details, see Error Page.

flags TenantFlags

List(Resource). Configuration settings for tenant flags. For details, see Flags.

friendlyName string

String. Friendly name for the tenant.

guardianMfaPage TenantGuardianMfaPage

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

idleSessionLifetime number

Integer. Number of hours during which a session can be inactive before the user must log in again.

pictureUrl string

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

sandboxVersion string

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

sessionLifetime number

Integer. Number of hours during which a session will stay valid.

supportEmail string

String. Support email address for authenticating users.

supportUrl string

String. Support URL for authenticating users.

universalLogin TenantUniversalLogin

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

allowed_logout_urls List[str]

List(String). URLs that Auth0 may redirect to after logout.

change_password Dict[TenantChangePassword]

List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.

default_audience str

String. API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.

default_directory str

String. Name of the connection to be used for Password Grant exchanges. Options include auth0-adldap, ad, auth0, email, sms, waad, and adfs.

default_redirection_uri str

String. The default absolute redirection uri, must be https and cannot contain a fragment.

enabled_locales List[str]
error_page Dict[TenantErrorPage]

List(Resource). Configuration settings for error pages. For details, see Error Page.

flags Dict[TenantFlags]

List(Resource). Configuration settings for tenant flags. For details, see Flags.

friendly_name str

String. Friendly name for the tenant.

guardian_mfa_page Dict[TenantGuardianMfaPage]

List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.

idle_session_lifetime float

Integer. Number of hours during which a session can be inactive before the user must log in again.

picture_url str

. String URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used.

sandbox_version str

String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.

session_lifetime float

Integer. Number of hours during which a session will stay valid.

support_email str

String. Support email address for authenticating users.

support_url str

String. Support URL for authenticating users.

universal_login Dict[TenantUniversalLogin]

List(Resource). Configuration settings for Universal Login. For details, see Universal Login.

Supporting Types

TenantChangePassword

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Enabled bool

Boolean. Indicates whether or not to use the custom change password page.

Html string

String, HTML format with supported Liquid syntax. Customized content of the change password page.

Enabled bool

Boolean. Indicates whether or not to use the custom change password page.

Html string

String, HTML format with supported Liquid syntax. Customized content of the change password page.

enabled boolean

Boolean. Indicates whether or not to use the custom change password page.

html string

String, HTML format with supported Liquid syntax. Customized content of the change password page.

enabled bool

Boolean. Indicates whether or not to use the custom change password page.

html str

String, HTML format with supported Liquid syntax. Customized content of the change password page.

TenantErrorPage

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Html string

String, HTML format with supported Liquid syntax. Customized content of the error page.

ShowLogLink bool

Boolean. Indicates whether or not to show the link to logs as part of the default error page.

Url string

String. URL to redirect to when an error occurs rather than showing the default error page.

Html string

String, HTML format with supported Liquid syntax. Customized content of the error page.

ShowLogLink bool

Boolean. Indicates whether or not to show the link to logs as part of the default error page.

Url string

String. URL to redirect to when an error occurs rather than showing the default error page.

html string

String, HTML format with supported Liquid syntax. Customized content of the error page.

showLogLink boolean

Boolean. Indicates whether or not to show the link to logs as part of the default error page.

url string

String. URL to redirect to when an error occurs rather than showing the default error page.

html str

String, HTML format with supported Liquid syntax. Customized content of the error page.

showLogLink bool

Boolean. Indicates whether or not to show the link to logs as part of the default error page.

url str

String. URL to redirect to when an error occurs rather than showing the default error page.

TenantFlags

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ChangePwdFlowV1 bool

Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.

DisableClickjackProtectionHeaders bool

Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.

EnableApisSection bool

Boolean. Indicates whether or not the APIs section is enabled for the tenant.

EnableClientConnections bool

Boolean. Indicates whether or not all current connections should be enabled when a new client is created.

EnableCustomDomainInEmails bool

Boolean. Indicates whether or not the tenant allows custom domains in emails.

EnableDynamicClientRegistration bool

Boolean. Indicates whether or not the tenant allows dynamic client registration.

EnableLegacyLogsSearchV2 bool

Boolean. Indicates whether or not to use the older v2 legacy logs search.

EnablePipeline2 bool

Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.

EnablePublicSignupUserExistsError bool

Boolean. Indicates whether or not the public sign up process shows a user_exists error if the user already exists.

UniversalLogin bool

Boolean. Indicates whether or not the tenant uses universal login.

UseScopeDescriptionsForConsent bool
ChangePwdFlowV1 bool

Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.

DisableClickjackProtectionHeaders bool

Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.

EnableApisSection bool

Boolean. Indicates whether or not the APIs section is enabled for the tenant.

EnableClientConnections bool

Boolean. Indicates whether or not all current connections should be enabled when a new client is created.

EnableCustomDomainInEmails bool

Boolean. Indicates whether or not the tenant allows custom domains in emails.

EnableDynamicClientRegistration bool

Boolean. Indicates whether or not the tenant allows dynamic client registration.

EnableLegacyLogsSearchV2 bool

Boolean. Indicates whether or not to use the older v2 legacy logs search.

EnablePipeline2 bool

Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.

EnablePublicSignupUserExistsError bool

Boolean. Indicates whether or not the public sign up process shows a user_exists error if the user already exists.

UniversalLogin bool

Boolean. Indicates whether or not the tenant uses universal login.

UseScopeDescriptionsForConsent bool
changePwdFlowV1 boolean

Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.

disableClickjackProtectionHeaders boolean

Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.

enableApisSection boolean

Boolean. Indicates whether or not the APIs section is enabled for the tenant.

enableClientConnections boolean

Boolean. Indicates whether or not all current connections should be enabled when a new client is created.

enableCustomDomainInEmails boolean

Boolean. Indicates whether or not the tenant allows custom domains in emails.

enableDynamicClientRegistration boolean

Boolean. Indicates whether or not the tenant allows dynamic client registration.

enableLegacyLogsSearchV2 boolean

Boolean. Indicates whether or not to use the older v2 legacy logs search.

enablePipeline2 boolean

Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.

enablePublicSignupUserExistsError boolean

Boolean. Indicates whether or not the public sign up process shows a user_exists error if the user already exists.

universalLogin boolean

Boolean. Indicates whether or not the tenant uses universal login.

useScopeDescriptionsForConsent boolean
changePwdFlowV1 bool

Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.

disableClickjackProtectionHeaders bool

Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.

enableApisSection bool

Boolean. Indicates whether or not the APIs section is enabled for the tenant.

enableClientConnections bool

Boolean. Indicates whether or not all current connections should be enabled when a new client is created.

enableCustomDomainInEmails bool

Boolean. Indicates whether or not the tenant allows custom domains in emails.

enableDynamicClientRegistration bool

Boolean. Indicates whether or not the tenant allows dynamic client registration.

enableLegacyLogsSearchV2 bool

Boolean. Indicates whether or not to use the older v2 legacy logs search.

enablePipeline2 bool

Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.

enablePublicSignupUserExistsError bool

Boolean. Indicates whether or not the public sign up process shows a user_exists error if the user already exists.

universal_login bool

Boolean. Indicates whether or not the tenant uses universal login.

useScopeDescriptionsForConsent bool

TenantGuardianMfaPage

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Enabled bool

Boolean. Indicates whether or not to use the custom Guardian page.

Html string

String, HTML format with supported Liquid syntax. Customized content of the Guardian page.

Enabled bool

Boolean. Indicates whether or not to use the custom Guardian page.

Html string

String, HTML format with supported Liquid syntax. Customized content of the Guardian page.

enabled boolean

Boolean. Indicates whether or not to use the custom Guardian page.

html string

String, HTML format with supported Liquid syntax. Customized content of the Guardian page.

enabled bool

Boolean. Indicates whether or not to use the custom Guardian page.

html str

String, HTML format with supported Liquid syntax. Customized content of the Guardian page.

TenantUniversalLogin

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Colors TenantUniversalLoginColorsArgs

List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.

Colors TenantUniversalLoginColors

List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.

colors TenantUniversalLoginColors

List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.

colors Dict[TenantUniversalLoginColors]

List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.

TenantUniversalLoginColors

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

PageBackground string

String, Hexadecimal. Background color of login pages.

Primary string

String, Hexadecimal. Primary button background color.

PageBackground string

String, Hexadecimal. Background color of login pages.

Primary string

String, Hexadecimal. Primary button background color.

pageBackground string

String, Hexadecimal. Background color of login pages.

primary string

String, Hexadecimal. Primary button background color.

pageBackground str

String, Hexadecimal. Background color of login pages.

primary str

String, Hexadecimal. Primary button background color.

Package Details

Repository
https://github.com/pulumi/pulumi-auth0
License
Apache-2.0
Notes
This Pulumi package is based on the auth0 Terraform Provider.