Attack group
akamai_appsec_attack_group
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 2 days ago