Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "okta_brands_templates_email_customization" "test" {
brand_id = "replace_with_uuid"
template_name = "replace_with_uuid"
body = "test-body"
is_default = false
language = "en"
subject = "test-subject"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "okta_brands_templates_email_setting" "test" {
brand_id = "replace_with_uuid"
template_name = "replace_with_uuid"
recipients = "NO_USERS"
}
5 changes: 5 additions & 0 deletions examples/resources/okta_templates_sm/basic.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resource "okta_templates_sm" "test" {
name = "testAcc_replace_with_uuid"
template = "$${org.name} code is: $${code}"
type = "SMS_VERIFY_CODE"
}
3 changes: 3 additions & 0 deletions okta/services/idaas/idaas.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ func FWProviderResources() []func() resource.Resource {
newGroupOwnersResource,
newAppSignOnPolicyResource,
newEmailTemplateSettingsResource,
newBrandsTemplatesEmailCustomizationResource,
newBrandsTemplatesEmailSettingResource,
newTemplatesSmResource,
newFeaturesResource,
newRealmResource,
newRealmAssignmentResource,
Expand Down

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is the docs/**/*.md file for this ?

@dhiwakar-okta dhiwakar-okta Aug 3, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like this is still EA @pranav-okta
/api/v1/brands/{brandId}/templates/email/{templateName}/customizations
Please remove this resource file along with the corresponding tests from this PR for the time being.

Update the PR's description too.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading