Skip to content

Commit

Permalink
Add password-reset-post-challenge to 1:1 trigger action resource (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Jul 19, 2023
1 parent e9412d1 commit aac8975
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/trigger_action.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resource "auth0_trigger_action" "post_login_alert_action" {
### Required

- `action_id` (String) The ID of the action to bind to the trigger.
- `trigger` (String) The ID of the trigger to bind with. Available options: `post-login`, `credentials-exchange`, `pre-user-registration`, `post-user-registration`, `post-change-password`, `send-phone-message`, `iga-approval`, `iga-certification`, `iga-fulfillment-assignment`, `iga-fulfillment-execution`,
- `trigger` (String) The ID of the trigger to bind with. Available options: `post-login`, `credentials-exchange`, `pre-user-registration`, `post-user-registration`, `post-change-password`, `send-phone-message`, `password-reset-post-challenge`, `iga-approval`, `iga-certification`, `iga-fulfillment-assignment`, `iga-fulfillment-execution`.

### Optional

Expand Down
3 changes: 2 additions & 1 deletion internal/auth0/action/resource_trigger_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ func NewTriggerActionResource() *schema.Resource {
"post-user-registration",
"post-change-password",
"send-phone-message",
"password-reset-post-challenge",
"iga-approval",
"iga-certification",
"iga-fulfillment-assignment",
"iga-fulfillment-execution",
}, false),
Description: "The ID of the trigger to bind with. Available options: `post-login`, `credentials-exchange`, `pre-user-registration`, `post-user-registration`, `post-change-password`, `send-phone-message`, `iga-approval`, `iga-certification`, `iga-fulfillment-assignment`, `iga-fulfillment-execution`,",
Description: "The ID of the trigger to bind with. Available options: `post-login`, `credentials-exchange`, `pre-user-registration`, `post-user-registration`, `post-change-password`, `send-phone-message`, `password-reset-post-challenge`, `iga-approval`, `iga-certification`, `iga-fulfillment-assignment`, `iga-fulfillment-execution`.",
},
"action_id": {
Type: schema.TypeString,
Expand Down

0 comments on commit aac8975

Please sign in to comment.