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

ArgumentRequiredDescription
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:
  • alert. Records information about the request.
  • deny. Blocks the request.
  • deny. Takes your custom action against the request.
  • none. No action taken.
condition_exceptionPath to a JSON file containing the conditions and exceptions to be assigned to the attack group.