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

azurerm_web_application_firewall_policy - Support JSChallenge action #26561

Merged
Show file tree
Hide file tree
Changes from all commits
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
Expand Up @@ -338,6 +338,7 @@ func resourceWebApplicationFirewallPolicy() *pluginsdk.Resource {
string(webapplicationfirewallpolicies.ActionTypeAllow),
string(webapplicationfirewallpolicies.ActionTypeAnomalyScoring),
string(webapplicationfirewallpolicies.ActionTypeBlock),
string(webapplicationfirewallpolicies.ActionTypeJSChallenge),
string(webapplicationfirewallpolicies.ActionTypeLog),
}, false),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ The `rule` block supports the following:

* `enabled` - (Optional) Describes if the managed rule is in enabled state or disabled state.

* `action` - (Optional) Describes the override action to be applied when rule matches. Possible values are `Allow`, `AnomalyScoring`, `Block` and `Log`.
* `action` - (Optional) Describes the override action to be applied when rule matches. Possible values are `Allow`, `AnomalyScoring`, `Block`, `JSChallenge` and `Log`. `JSChallenge` is only valid for rulesets of type `Microsoft_BotManagerRuleSet`.

---

Expand Down
Loading