1. Packages
  2. Okta Provider
  3. API Docs
  4. EmailCustomization
Okta v4.16.0 published on Wednesday, Apr 9, 2025 by Pulumi

okta.EmailCustomization

Explore with Pulumi AI

Create an email customization of an email template belonging to a brand in an Okta organization. Use this resource to create an email customization of an email template belonging to a brand in an Okta organization. > Okta’s public API is strict regarding the behavior of the ‘is_default’ property in an email customization. Make use of ‘depends_on’ meta argument to ensure the provider navigates email customization language versions seamlessly. Have all secondary customizations depend on the primary customization that is marked default. See Example Usage. > Caveats for creating an email customization. If this is the first customization being created for the email template, and ‘is_default’ is not set for the customization in its resource configuration, the API will respond with the created customization marked as default. The API will 400 if the language parameter is not one of the supported languages or the body parameter does not contain a required variable reference. The API will error 409 if ‘is_default’ is true and a default customization exists. The API will 404 for an invalid ‘brand_id’ or ’template_name’. > Caveats for updating an email customization. If the ‘is_default’ parameter is true, the previous default email customization has its ‘is_default’ set to false (see previous note about mitigating this with ‘depends_on’ meta argument). The API will 409 if there’s already another email customization for the specified language or the ‘is_default’ parameter is false and the email customization being updated is the default. The API will 400 if the language parameter is not one of the supported locales or the body parameter does not contain a required variable reference. The API will 404 for an invalid ‘brand_id’ or ’template_name’.

Create EmailCustomization Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new EmailCustomization(name: string, args: EmailCustomizationArgs, opts?: CustomResourceOptions);
@overload
def EmailCustomization(resource_name: str,
                       args: EmailCustomizationArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def EmailCustomization(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       brand_id: Optional[str] = None,
                       template_name: Optional[str] = None,
                       body: Optional[str] = None,
                       force_is_default: Optional[str] = None,
                       is_default: Optional[bool] = None,
                       language: Optional[str] = None,
                       subject: Optional[str] = None)
func NewEmailCustomization(ctx *Context, name string, args EmailCustomizationArgs, opts ...ResourceOption) (*EmailCustomization, error)
public EmailCustomization(string name, EmailCustomizationArgs args, CustomResourceOptions? opts = null)
public EmailCustomization(String name, EmailCustomizationArgs args)
public EmailCustomization(String name, EmailCustomizationArgs args, CustomResourceOptions options)
type: okta:EmailCustomization
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EmailCustomizationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EmailCustomizationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EmailCustomizationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EmailCustomizationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EmailCustomizationArgs
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 emailCustomizationResource = new Okta.EmailCustomization("emailCustomizationResource", new()
{
    BrandId = "string",
    TemplateName = "string",
    Body = "string",
    IsDefault = false,
    Language = "string",
    Subject = "string",
});
Copy
example, err := okta.NewEmailCustomization(ctx, "emailCustomizationResource", &okta.EmailCustomizationArgs{
	BrandId:      pulumi.String("string"),
	TemplateName: pulumi.String("string"),
	Body:         pulumi.String("string"),
	IsDefault:    pulumi.Bool(false),
	Language:     pulumi.String("string"),
	Subject:      pulumi.String("string"),
})
Copy
var emailCustomizationResource = new EmailCustomization("emailCustomizationResource", EmailCustomizationArgs.builder()
    .brandId("string")
    .templateName("string")
    .body("string")
    .isDefault(false)
    .language("string")
    .subject("string")
    .build());
Copy
email_customization_resource = okta.EmailCustomization("emailCustomizationResource",
    brand_id="string",
    template_name="string",
    body="string",
    is_default=False,
    language="string",
    subject="string")
Copy
const emailCustomizationResource = new okta.EmailCustomization("emailCustomizationResource", {
    brandId: "string",
    templateName: "string",
    body: "string",
    isDefault: false,
    language: "string",
    subject: "string",
});
Copy
type: okta:EmailCustomization
properties:
    body: string
    brandId: string
    isDefault: false
    language: string
    subject: string
    templateName: string
Copy

EmailCustomization Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The EmailCustomization resource accepts the following input properties:

BrandId This property is required. string
Brand ID
TemplateName This property is required. string
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
Body string
The body of the customization
ForceIsDefault string
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

IsDefault bool
Whether the customization is the default
Language string
The language supported by the customization - Example values from supported languages
Subject string
The subject of the customization
BrandId This property is required. string
Brand ID
TemplateName This property is required. string
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
Body string
The body of the customization
ForceIsDefault string
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

IsDefault bool
Whether the customization is the default
Language string
The language supported by the customization - Example values from supported languages
Subject string
The subject of the customization
brandId This property is required. String
Brand ID
templateName This property is required. String
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body String
The body of the customization
forceIsDefault String
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

isDefault Boolean
Whether the customization is the default
language String
The language supported by the customization - Example values from supported languages
subject String
The subject of the customization
brandId This property is required. string
Brand ID
templateName This property is required. string
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body string
The body of the customization
forceIsDefault string
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

isDefault boolean
Whether the customization is the default
language string
The language supported by the customization - Example values from supported languages
subject string
The subject of the customization
brand_id This property is required. str
Brand ID
template_name This property is required. str
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body str
The body of the customization
force_is_default str
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

is_default bool
Whether the customization is the default
language str
The language supported by the customization - Example values from supported languages
subject str
The subject of the customization
brandId This property is required. String
Brand ID
templateName This property is required. String
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body String
The body of the customization
forceIsDefault String
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

isDefault Boolean
Whether the customization is the default
language String
The language supported by the customization - Example values from supported languages
subject String
The subject of the customization

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Links string
Link relations for this object - JSON HAL - Discoverable resources related to the email template
Id string
The provider-assigned unique ID for this managed resource.
Links string
Link relations for this object - JSON HAL - Discoverable resources related to the email template
id String
The provider-assigned unique ID for this managed resource.
links String
Link relations for this object - JSON HAL - Discoverable resources related to the email template
id string
The provider-assigned unique ID for this managed resource.
links string
Link relations for this object - JSON HAL - Discoverable resources related to the email template
id str
The provider-assigned unique ID for this managed resource.
links str
Link relations for this object - JSON HAL - Discoverable resources related to the email template
id String
The provider-assigned unique ID for this managed resource.
links String
Link relations for this object - JSON HAL - Discoverable resources related to the email template

Look up Existing EmailCustomization Resource

Get an existing EmailCustomization 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?: EmailCustomizationState, opts?: CustomResourceOptions): EmailCustomization
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        body: Optional[str] = None,
        brand_id: Optional[str] = None,
        force_is_default: Optional[str] = None,
        is_default: Optional[bool] = None,
        language: Optional[str] = None,
        links: Optional[str] = None,
        subject: Optional[str] = None,
        template_name: Optional[str] = None) -> EmailCustomization
func GetEmailCustomization(ctx *Context, name string, id IDInput, state *EmailCustomizationState, opts ...ResourceOption) (*EmailCustomization, error)
public static EmailCustomization Get(string name, Input<string> id, EmailCustomizationState? state, CustomResourceOptions? opts = null)
public static EmailCustomization get(String name, Output<String> id, EmailCustomizationState state, CustomResourceOptions options)
resources:  _:    type: okta:EmailCustomization    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Body string
The body of the customization
BrandId string
Brand ID
ForceIsDefault string
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

IsDefault bool
Whether the customization is the default
Language string
The language supported by the customization - Example values from supported languages
Links string
Link relations for this object - JSON HAL - Discoverable resources related to the email template
Subject string
The subject of the customization
TemplateName string
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
Body string
The body of the customization
BrandId string
Brand ID
ForceIsDefault string
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

IsDefault bool
Whether the customization is the default
Language string
The language supported by the customization - Example values from supported languages
Links string
Link relations for this object - JSON HAL - Discoverable resources related to the email template
Subject string
The subject of the customization
TemplateName string
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body String
The body of the customization
brandId String
Brand ID
forceIsDefault String
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

isDefault Boolean
Whether the customization is the default
language String
The language supported by the customization - Example values from supported languages
links String
Link relations for this object - JSON HAL - Discoverable resources related to the email template
subject String
The subject of the customization
templateName String
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body string
The body of the customization
brandId string
Brand ID
forceIsDefault string
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

isDefault boolean
Whether the customization is the default
language string
The language supported by the customization - Example values from supported languages
links string
Link relations for this object - JSON HAL - Discoverable resources related to the email template
subject string
The subject of the customization
templateName string
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body str
The body of the customization
brand_id str
Brand ID
force_is_default str
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

is_default bool
Whether the customization is the default
language str
The language supported by the customization - Example values from supported languages
links str
Link relations for this object - JSON HAL - Discoverable resources related to the email template
subject str
The subject of the customization
template_name str
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation
body String
The body of the customization
brandId String
Brand ID
forceIsDefault String
Force is_default on the create and delete by deleting all email customizations. Comma separated string with values of 'create' or 'destroy' or both `create,destroy'.

Deprecated: force_is_default is deprecated and now is a no-op in behavior. Rely upon the depends_on meta argument to force dependency of secondary templates to the default template

isDefault Boolean
Whether the customization is the default
language String
The language supported by the customization - Example values from supported languages
links String
Link relations for this object - JSON HAL - Discoverable resources related to the email template
subject String
The subject of the customization
templateName String
Template Name - Example values: AccountLockout,ADForgotPassword,ADForgotPasswordDenied,ADSelfServiceUnlock,ADUserActivation,AuthenticatorEnrolled,AuthenticatorReset,ChangeEmailConfirmation,EmailChallenge,EmailChangeConfirmation,EmailFactorVerification,ForgotPassword,ForgotPasswordDenied,IGAReviewerEndNotification,IGAReviewerNotification,IGAReviewerPendingNotification,IGAReviewerReassigned,LDAPForgotPassword,LDAPForgotPasswordDenied,LDAPSelfServiceUnlock,LDAPUserActivation,MyAccountChangeConfirmation,NewSignOnNotification,OktaVerifyActivation,PasswordChanged,PasswordResetByAdmin,PendingEmailChange,RegistrationActivation,RegistrationEmailVerification,SelfServiceUnlock,SelfServiceUnlockOnUnlockedAccount,UserActivation

Import

$ pulumi import okta:index/emailCustomization:EmailCustomization example <customization_id>/<brand_id>/<template_name>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Okta pulumi/pulumi-okta
License
Apache-2.0
Notes
This Pulumi package is based on the okta Terraform Provider.