-
Notifications
You must be signed in to change notification settings - Fork 264
DO NOT MERGE: feat: add templates and brands resource #2891
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: codegen-migration-phase-2
Are you sure you want to change the base?
Changes from 1 commit
c6ade7f
40da2a3
49be7e3
6f46634
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" | ||
| } |
| 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" | ||
| } |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like this is still EA @pranav-okta 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.
There was a problem hiding this comment.
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 ?