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:
- Allowed
Logout List<string>Urls List(String). URLs that Auth0 may redirect to after logout.
- Change
Password TenantChange Password Args List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.
- Default
Audience 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.
- Default
Directory string String. Name of the connection to be used for Password Grant exchanges. Options include
auth0-adldap,ad,auth0,email,sms,waad, andadfs.- Default
Redirection stringUri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- Enabled
Locales List<string> - Error
Page TenantError Page Args List(Resource). Configuration settings for error pages. For details, see Error Page.
- Flags
Tenant
Flags Args List(Resource). Configuration settings for tenant flags. For details, see Flags.
- Friendly
Name string String. Friendly name for the tenant.
- Guardian
Mfa TenantPage Guardian Mfa Page Args List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- Idle
Session intLifetime Integer. Number of hours during which a session can be inactive before the user must log in again.
- Picture
Url 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.
- Sandbox
Version string String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.
- Session
Lifetime int Integer. Number of hours during which a session will stay valid.
- Support
Email string String. Support email address for authenticating users.
- Support
Url string String. Support URL for authenticating users.
- Universal
Login TenantUniversal Login Args List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
- Allowed
Logout []stringUrls List(String). URLs that Auth0 may redirect to after logout.
- Change
Password TenantChange Password List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.
- Default
Audience 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.
- Default
Directory string String. Name of the connection to be used for Password Grant exchanges. Options include
auth0-adldap,ad,auth0,email,sms,waad, andadfs.- Default
Redirection stringUri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- Enabled
Locales []string - Error
Page TenantError Page List(Resource). Configuration settings for error pages. For details, see Error Page.
- Flags
Tenant
Flags List(Resource). Configuration settings for tenant flags. For details, see Flags.
- Friendly
Name string String. Friendly name for the tenant.
- Guardian
Mfa TenantPage Guardian Mfa Page List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- Idle
Session intLifetime Integer. Number of hours during which a session can be inactive before the user must log in again.
- Picture
Url 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.
- Sandbox
Version string String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.
- Session
Lifetime int Integer. Number of hours during which a session will stay valid.
- Support
Email string String. Support email address for authenticating users.
- Support
Url string String. Support URL for authenticating users.
- Universal
Login TenantUniversal Login List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
- allowed
Logout string[]Urls List(String). URLs that Auth0 may redirect to after logout.
- change
Password TenantChange Password List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.
- default
Audience 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.
- default
Directory string String. Name of the connection to be used for Password Grant exchanges. Options include
auth0-adldap,ad,auth0,email,sms,waad, andadfs.- default
Redirection stringUri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- enabled
Locales string[] - error
Page TenantError Page List(Resource). Configuration settings for error pages. For details, see Error Page.
- flags
Tenant
Flags List(Resource). Configuration settings for tenant flags. For details, see Flags.
- friendly
Name string String. Friendly name for the tenant.
- guardian
Mfa TenantPage Guardian Mfa Page List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- idle
Session numberLifetime Integer. Number of hours during which a session can be inactive before the user must log in again.
- picture
Url 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.
- sandbox
Version string String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.
- session
Lifetime number Integer. Number of hours during which a session will stay valid.
- support
Email string String. Support email address for authenticating users.
- support
Url string String. Support URL for authenticating users.
- universal
Login TenantUniversal Login List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
- allowed_
logout_ List[str]urls List(String). URLs that Auth0 may redirect to after logout.
- change_
password Dict[TenantChange Password] 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, andadfs.- default_
redirection_ struri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- enabled_
locales List[str] - error_
page Dict[TenantError Page] List(Resource). Configuration settings for error pages. For details, see Error Page.
- flags
Dict[Tenant
Flags] List(Resource). Configuration settings for tenant flags. For details, see Flags.
- friendly_
name str String. Friendly name for the tenant.
- guardian_
mfa_ Dict[Tenantpage Guardian Mfa Page] List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- idle_
session_ floatlifetime 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[TenantUniversal Login] 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:
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): Tenantstatic 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:
- Allowed
Logout List<string>Urls List(String). URLs that Auth0 may redirect to after logout.
- Change
Password TenantChange Password Args List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.
- Default
Audience 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.
- Default
Directory string String. Name of the connection to be used for Password Grant exchanges. Options include
auth0-adldap,ad,auth0,email,sms,waad, andadfs.- Default
Redirection stringUri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- Enabled
Locales List<string> - Error
Page TenantError Page Args List(Resource). Configuration settings for error pages. For details, see Error Page.
- Flags
Tenant
Flags Args List(Resource). Configuration settings for tenant flags. For details, see Flags.
- Friendly
Name string String. Friendly name for the tenant.
- Guardian
Mfa TenantPage Guardian Mfa Page Args List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- Idle
Session intLifetime Integer. Number of hours during which a session can be inactive before the user must log in again.
- Picture
Url 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.
- Sandbox
Version string String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.
- Session
Lifetime int Integer. Number of hours during which a session will stay valid.
- Support
Email string String. Support email address for authenticating users.
- Support
Url string String. Support URL for authenticating users.
- Universal
Login TenantUniversal Login Args List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
- Allowed
Logout []stringUrls List(String). URLs that Auth0 may redirect to after logout.
- Change
Password TenantChange Password List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.
- Default
Audience 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.
- Default
Directory string String. Name of the connection to be used for Password Grant exchanges. Options include
auth0-adldap,ad,auth0,email,sms,waad, andadfs.- Default
Redirection stringUri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- Enabled
Locales []string - Error
Page TenantError Page List(Resource). Configuration settings for error pages. For details, see Error Page.
- Flags
Tenant
Flags List(Resource). Configuration settings for tenant flags. For details, see Flags.
- Friendly
Name string String. Friendly name for the tenant.
- Guardian
Mfa TenantPage Guardian Mfa Page List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- Idle
Session intLifetime Integer. Number of hours during which a session can be inactive before the user must log in again.
- Picture
Url 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.
- Sandbox
Version string String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.
- Session
Lifetime int Integer. Number of hours during which a session will stay valid.
- Support
Email string String. Support email address for authenticating users.
- Support
Url string String. Support URL for authenticating users.
- Universal
Login TenantUniversal Login List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
- allowed
Logout string[]Urls List(String). URLs that Auth0 may redirect to after logout.
- change
Password TenantChange Password List(Resource). Configuration settings for change passsword page. For details, see Change Password Page.
- default
Audience 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.
- default
Directory string String. Name of the connection to be used for Password Grant exchanges. Options include
auth0-adldap,ad,auth0,email,sms,waad, andadfs.- default
Redirection stringUri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- enabled
Locales string[] - error
Page TenantError Page List(Resource). Configuration settings for error pages. For details, see Error Page.
- flags
Tenant
Flags List(Resource). Configuration settings for tenant flags. For details, see Flags.
- friendly
Name string String. Friendly name for the tenant.
- guardian
Mfa TenantPage Guardian Mfa Page List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- idle
Session numberLifetime Integer. Number of hours during which a session can be inactive before the user must log in again.
- picture
Url 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.
- sandbox
Version string String. Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0’s functionality.
- session
Lifetime number Integer. Number of hours during which a session will stay valid.
- support
Email string String. Support email address for authenticating users.
- support
Url string String. Support URL for authenticating users.
- universal
Login TenantUniversal Login List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
- allowed_
logout_ List[str]urls List(String). URLs that Auth0 may redirect to after logout.
- change_
password Dict[TenantChange Password] 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, andadfs.- default_
redirection_ struri String. The default absolute redirection uri, must be https and cannot contain a fragment.
- enabled_
locales List[str] - error_
page Dict[TenantError Page] List(Resource). Configuration settings for error pages. For details, see Error Page.
- flags
Dict[Tenant
Flags] List(Resource). Configuration settings for tenant flags. For details, see Flags.
- friendly_
name str String. Friendly name for the tenant.
- guardian_
mfa_ Dict[Tenantpage Guardian Mfa Page] List(Resource). Configuration settings for the Guardian MFA page. For details, see Guardian MFA Page.
- idle_
session_ floatlifetime 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[TenantUniversal Login] List(Resource). Configuration settings for Universal Login. For details, see Universal Login.
Supporting Types
TenantChangePassword
TenantErrorPage
- Html string
String, HTML format with supported Liquid syntax. Customized content of the error page.
- Show
Log boolLink 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.
- Show
Log boolLink 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.
- show
Log booleanLink 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.
- show
Log boolLink 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
- Change
Pwd boolFlow V1 Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.
- Disable
Clickjack boolProtection Headers Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.
- Enable
Apis boolSection Boolean. Indicates whether or not the APIs section is enabled for the tenant.
- Enable
Client boolConnections Boolean. Indicates whether or not all current connections should be enabled when a new client is created.
- Enable
Custom boolDomain In Emails Boolean. Indicates whether or not the tenant allows custom domains in emails.
- Enable
Dynamic boolClient Registration Boolean. Indicates whether or not the tenant allows dynamic client registration.
- Enable
Legacy boolLogs Search V2 Boolean. Indicates whether or not to use the older v2 legacy logs search.
- Enable
Pipeline2 bool Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.
- Enable
Public boolSignup User Exists Error 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.
- Use
Scope boolDescriptions For Consent
- Change
Pwd boolFlow V1 Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.
- Disable
Clickjack boolProtection Headers Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.
- Enable
Apis boolSection Boolean. Indicates whether or not the APIs section is enabled for the tenant.
- Enable
Client boolConnections Boolean. Indicates whether or not all current connections should be enabled when a new client is created.
- Enable
Custom boolDomain In Emails Boolean. Indicates whether or not the tenant allows custom domains in emails.
- Enable
Dynamic boolClient Registration Boolean. Indicates whether or not the tenant allows dynamic client registration.
- Enable
Legacy boolLogs Search V2 Boolean. Indicates whether or not to use the older v2 legacy logs search.
- Enable
Pipeline2 bool Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.
- Enable
Public boolSignup User Exists Error 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.
- Use
Scope boolDescriptions For Consent
- change
Pwd booleanFlow V1 Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.
- disable
Clickjack booleanProtection Headers Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.
- enable
Apis booleanSection Boolean. Indicates whether or not the APIs section is enabled for the tenant.
- enable
Client booleanConnections Boolean. Indicates whether or not all current connections should be enabled when a new client is created.
- enable
Custom booleanDomain In Emails Boolean. Indicates whether or not the tenant allows custom domains in emails.
- enable
Dynamic booleanClient Registration Boolean. Indicates whether or not the tenant allows dynamic client registration.
- enable
Legacy booleanLogs Search V2 Boolean. Indicates whether or not to use the older v2 legacy logs search.
- enable
Pipeline2 boolean Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.
- enable
Public booleanSignup User Exists Error Boolean. Indicates whether or not the public sign up process shows a user_exists error if the user already exists.
- universal
Login boolean Boolean. Indicates whether or not the tenant uses universal login.
- use
Scope booleanDescriptions For Consent
- change
Pwd boolFlow V1 Boolean. Indicates whether or not to use the older v1 change password flow. Not recommended except for backward compatibility.
- disable
Clickjack boolProtection Headers Boolean. Indicated whether or not classic Universal Login prompts include additional security headers to prevent clickjacking.
- enable
Apis boolSection Boolean. Indicates whether or not the APIs section is enabled for the tenant.
- enable
Client boolConnections Boolean. Indicates whether or not all current connections should be enabled when a new client is created.
- enable
Custom boolDomain In Emails Boolean. Indicates whether or not the tenant allows custom domains in emails.
- enable
Dynamic boolClient Registration Boolean. Indicates whether or not the tenant allows dynamic client registration.
- enable
Legacy boolLogs Search V2 Boolean. Indicates whether or not to use the older v2 legacy logs search.
- enable
Pipeline2 bool Boolean. Indicates whether or not advanced API Authorization scenarios are enabled.
- enable
Public boolSignup User Exists Error 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.
- use
Scope boolDescriptions For Consent
TenantGuardianMfaPage
TenantUniversalLogin
- Colors
Tenant
Universal Login Colors Args List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.
- Colors
Tenant
Universal Login Colors List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.
- colors
Tenant
Universal Login Colors List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.
- colors
Dict[Tenant
Universal Login Colors] List(Resource). Configuration settings for Universal Login colors. See Universal Login - Colors.
TenantUniversalLoginColors
- Page
Background string String, Hexadecimal. Background color of login pages.
- Primary string
String, Hexadecimal. Primary button background color.
- Page
Background string String, Hexadecimal. Background color of login pages.
- Primary string
String, Hexadecimal. Primary button background color.
- page
Background string String, Hexadecimal. Background color of login pages.
- primary string
String, Hexadecimal. Primary button background color.
- page
Background 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
auth0Terraform Provider.