Eval group

akamai_appsec_eval_group

Modifies the action and the conditions and exceptions for an evaluation mode attack group.

Example

resource "akamai_appsec_eval_group" "my_eval_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

Pass your security configuration and policy IDs along with an attack group type to set or update the action taken.

Argument Required Description
config_id ✔️ A security configuration ID.
security_policy_id ✔️ A security policy ID.
attack_group ✔️ An attack group ID. Possible values are:
  • POLICY
  • WAT
  • PROTOCOL
  • SQL
  • XSS
  • CMD
  • LFI
  • RFI
  • PLATFORM
  • OUTBOUND
attack_group_action ✔️
  • alert. Record the event.
  • deny. Block the request.
  • deny_custom_{custom_deny_id}. Take the action specified by the custom deny.
  • none. Take no action.
condition_exception Path to a JSON file containing properties and property values for the attack group.

Attributes

There is no standard output for this resource. Adding an output block returns confirmation of an action set or updated.