Skip to content
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

Add support for breached_password_detection.stage on auth0_attack_protection resource #445

Merged
merged 12 commits into from
Jan 27, 2023
2 changes: 1 addition & 1 deletion docs/resources/attack_protection.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Optional:

Optional:

- `shields` (Set of String) Action to take when a breached password is detected during a signup.
- `shields` (Set of String) Action to take when a breached password is detected during a signup. Possible values: `block`, `admin_notification`.
nialdaly marked this conversation as resolved.
Show resolved Hide resolved



Expand Down
3 changes: 2 additions & 1 deletion internal/provider/resource_auth0_attack_protection.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ func newAttackProtection() *schema.Resource {
"admin_notification",
}, false),
},
Description: "Action to take when a breached password is detected during a signup.",
Description: "Action to take when a breached password is detected during " +
"a signup. Possible values: `block`, `admin_notification`.",
},
},
},
Expand Down