Penalty box

Modifies the penalty box settings for a security policy.

resource "akamai_appsec_penalty_box" "penalty_box" {
  config_id              = 12345
  security_policy_id     = "abcd_123456"
  penalty_box_protection = true
  penalty_box_action     = "deny"
}

Arguments

AttributeDescription
config_idA security configuration ID.
security_policy_idA security policy ID.
penalty_box_actionAction taken any time the penalty box is triggered. Contains:
  • alert. Event recorded.
  • deny. Event blocked.
  • deny_custom_{custom_deny_id}. Took your custom action against the event.
  • none. No action taken.
penalty_box_protectionWhen set to true, penalty box protections are enabled.

Attributes

Returned to your state file is a reflection of the information in your request.