Skip to content

Commit

Permalink
DOC: rules: add browserChallenge to rate limit rule (#220)
Browse files Browse the repository at this point in the history
This commit updates the documentation for rate limit rules to specify
that browserChallenge and verifyToken are now usable.
  • Loading branch information
daniel-corbett authored Apr 25, 2024
1 parent 4c0233c commit 66889f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/site_rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ Optional:

Required:

- `type` (String) (addSignal, allow, block, browserChallenge, excludeSignal, verifyToken) (rateLimit rule valid values: logRequest, blockSignal)
- `type` (String) (addSignal, allow, block, browserChallenge, excludeSignal, verifyToken) (rateLimit rule valid values: logRequest, blockSignal, browserChallenge, verifyToken)

Optional:

Expand Down
2 changes: 1 addition & 1 deletion provider/resource_site_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func resourceSiteRule() *schema.Resource {
Schema: map[string]*schema.Schema{
"type": {
Type: schema.TypeString,
Description: "(addSignal, allow, block, browserChallenge, excludeSignal, verifyToken) (rateLimit rule valid values: logRequest, blockSignal)",
Description: "(addSignal, allow, block, browserChallenge, excludeSignal, verifyToken) (rateLimit rule valid values: logRequest, blockSignal, browserChallenge, verifyToken)",
Required: true,
},
"signal": {
Expand Down

0 comments on commit 66889f4

Please sign in to comment.