auth0.PromptCustomText
Explore with Pulumi AI
With this resource, you can manage custom text on your Auth0 prompts. You can read more about custom texts here.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const example = new auth0.PromptCustomText("example", {
prompt: "login",
language: "en",
body: JSON.stringify({
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",
},
}),
});
import pulumi
import json
import pulumi_auth0 as auth0
example = auth0.PromptCustomText("example",
prompt="login",
language="en",
body=json.dumps({
"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",
},
}))
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
tmpJSON0, err := json.Marshal(map[string]interface{}{
"login": map[string]interface{}{
"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",
},
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = auth0.NewPromptCustomText(ctx, "example", &auth0.PromptCustomTextArgs{
Prompt: pulumi.String("login"),
Language: pulumi.String("en"),
Body: pulumi.String(json0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
var example = new Auth0.PromptCustomText("example", new()
{
Prompt = "login",
Language = "en",
Body = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["login"] = new Dictionary<string, object?>
{
["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",
},
}),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.PromptCustomText;
import com.pulumi.auth0.PromptCustomTextArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new PromptCustomText("example", PromptCustomTextArgs.builder()
.prompt("login")
.language("en")
.body(serializeJson(
jsonObject(
jsonProperty("login", jsonObject(
jsonProperty("alertListTitle", "Alerts"),
jsonProperty("buttonText", "Continue"),
jsonProperty("description", "Login to"),
jsonProperty("editEmailText", "Edit"),
jsonProperty("emailPlaceholder", "Email address"),
jsonProperty("federatedConnectionButtonText", "Continue with ${connectionName}"),
jsonProperty("footerLinkText", "Sign up"),
jsonProperty("footerText", "Don't have an account?"),
jsonProperty("forgotPasswordText", "Forgot password?"),
jsonProperty("invitationDescription", "Log in to accept ${inviterName}'s invitation to join ${companyName} on ${clientName}."),
jsonProperty("invitationTitle", "You've Been Invited!"),
jsonProperty("logoAltText", "${companyName}"),
jsonProperty("pageTitle", "Log in | ${clientName}"),
jsonProperty("passwordPlaceholder", "Password"),
jsonProperty("separatorText", "Or"),
jsonProperty("signupActionLinkText", "${footerLinkText}"),
jsonProperty("signupActionText", "${footerText}"),
jsonProperty("title", "Welcome"),
jsonProperty("usernamePlaceholder", "Username or email address")
))
)))
.build());
}
}
resources:
example:
type: auth0:PromptCustomText
properties:
prompt: login
language: en
body:
fn::toJSON:
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
Create PromptCustomText Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PromptCustomText(name: string, args: PromptCustomTextArgs, opts?: CustomResourceOptions);
@overload
def PromptCustomText(resource_name: str,
args: PromptCustomTextArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PromptCustomText(resource_name: str,
opts: Optional[ResourceOptions] = None,
body: Optional[str] = None,
language: Optional[str] = None,
prompt: Optional[str] = None)
func NewPromptCustomText(ctx *Context, name string, args PromptCustomTextArgs, opts ...ResourceOption) (*PromptCustomText, error)
public PromptCustomText(string name, PromptCustomTextArgs args, CustomResourceOptions? opts = null)
public PromptCustomText(String name, PromptCustomTextArgs args)
public PromptCustomText(String name, PromptCustomTextArgs args, CustomResourceOptions options)
type: auth0:PromptCustomText
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PromptCustomTextArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PromptCustomTextArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PromptCustomTextArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PromptCustomTextArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PromptCustomTextArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var promptCustomTextResource = new Auth0.PromptCustomText("promptCustomTextResource", new()
{
Body = "string",
Language = "string",
Prompt = "string",
});
example, err := auth0.NewPromptCustomText(ctx, "promptCustomTextResource", &auth0.PromptCustomTextArgs{
Body: pulumi.String("string"),
Language: pulumi.String("string"),
Prompt: pulumi.String("string"),
})
var promptCustomTextResource = new PromptCustomText("promptCustomTextResource", PromptCustomTextArgs.builder()
.body("string")
.language("string")
.prompt("string")
.build());
prompt_custom_text_resource = auth0.PromptCustomText("promptCustomTextResource",
body="string",
language="string",
prompt="string")
const promptCustomTextResource = new auth0.PromptCustomText("promptCustomTextResource", {
body: "string",
language: "string",
prompt: "string",
});
type: auth0:PromptCustomText
properties:
body: string
language: string
prompt: string
PromptCustomText Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The PromptCustomText resource accepts the following input properties:
- Body string
- JSON containing the custom texts. You can check the options for each prompt here.
- Language string
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - Prompt string
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- Body string
- JSON containing the custom texts. You can check the options for each prompt here.
- Language string
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - Prompt string
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body String
- JSON containing the custom texts. You can check the options for each prompt here.
- language String
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt String
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body string
- JSON containing the custom texts. You can check the options for each prompt here.
- language string
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt string
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body str
- JSON containing the custom texts. You can check the options for each prompt here.
- language str
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt str
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body String
- JSON containing the custom texts. You can check the options for each prompt here.
- language String
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt String
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
Outputs
All input properties are implicitly available as output properties. Additionally, the PromptCustomText 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 string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PromptCustomText Resource
Get an existing PromptCustomText 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?: PromptCustomTextState, opts?: CustomResourceOptions): PromptCustomText
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
body: Optional[str] = None,
language: Optional[str] = None,
prompt: Optional[str] = None) -> PromptCustomText
func GetPromptCustomText(ctx *Context, name string, id IDInput, state *PromptCustomTextState, opts ...ResourceOption) (*PromptCustomText, error)
public static PromptCustomText Get(string name, Input<string> id, PromptCustomTextState? state, CustomResourceOptions? opts = null)
public static PromptCustomText get(String name, Output<String> id, PromptCustomTextState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- 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.
- Body string
- JSON containing the custom texts. You can check the options for each prompt here.
- Language string
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - Prompt string
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- Body string
- JSON containing the custom texts. You can check the options for each prompt here.
- Language string
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - Prompt string
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body String
- JSON containing the custom texts. You can check the options for each prompt here.
- language String
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt String
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body string
- JSON containing the custom texts. You can check the options for each prompt here.
- language string
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt string
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body str
- JSON containing the custom texts. You can check the options for each prompt here.
- language str
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt str
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
- body String
- JSON containing the custom texts. You can check the options for each prompt here.
- language String
- Language of the custom text. Options include:
ar
,ar-EG
,ar-SA
,az
,bg
,bs
,ca-ES
,cs
,cy
,da
,de
,el
,en
,es
,es-AR
,es-MX
,et
,eu-ES
,fa
,fi
,fr
,fr-CA
,fr-FR
,gl-ES
,he
,hi
,hr
,hu
,hy
,id
,is
,it
,ja
,ko
,lt
,lv
,ms
,nb
,nl
,nn
,no
,pl
,pt
,pt-BR
,pt-PT
,ro
,ru
,sk
,sl
,sq
,sr
,sv
,th
,tl
,tr
,uk
,ur
,vi
,zh-CN
,zh-HK
,zh-TW
. - prompt String
- The term
prompt
is used to refer to a specific step in the login flow. Options include:captcha
,common
,consent
,custom-form
,customized-consent
,device-flow
,email-otp-challenge
,email-verification
,invitation
,login
,login-email-verification
,login-id
,login-password
,login-passwordless
,logout
,mfa
,mfa-email
,mfa-otp
,mfa-phone
,mfa-push
,mfa-recovery-code
,mfa-sms
,mfa-voice
,mfa-webauthn
,organizations
,passkeys
,phone-identifier-challenge
,phone-identifier-enrollment
,reset-password
,signup
,signup-id
,signup-password
,status
.
Import
This resource can be imported by specifying the
prompt and language separated by “::” (note the double colon)
Example
$ pulumi import auth0:index/promptCustomText:PromptCustomText example "login::en"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0
Terraform Provider.