Attack group
akamai_appsec_attack_group
DeprecatedHello. Just a note to let you know this resource is deprecated with a scheduled end-of-life in v10.4 of our provider.
This resource's narrow scope, management of only one rule or group, causes rate-limiting issues when you've got multiples. To mitigate that, we're replacing this resource with a new one that lets you manage all of your policy's rules and groups at once, WAF rule set.
See Attack group migration for more information on improvements and argument mapping.
Modify an attack group's action, conditions, and exceptions. Attack groups are collections of Kona Rule Set rules used to streamline the management of website protections.
resource "akamai_appsec_attack_group" "my_attack_group" {
config_id = 12345
security_policy_id = "abcd_123456"
attack_group = "SQL"
attack_group_action = "deny"
condition_exception = file("${path.module}/condition_exception.json")
}Arguments
| Argument | Required | Description |
|---|---|---|
config_id | ✔️ | A security configuration ID. |
security_policy_id | ✔️ | A security policy ID. |
attack_group | ✔️ | An attack group name. |
attack_group_action | ✔️ | Action taken any time the attack group is triggered. Possible values are:
|
condition_exception | Path to a JSON file containing the conditions and exceptions to be assigned to the attack group. |
Updated 4 days ago
