Reputation profile actions

akamai_appsec_reputation_profile_actions

Returns action information for your reputation profiles. Actions specify what happens any time a profile is triggered: the issue could be ignored, the request could be denied, or an alert could be generated.

data "akamai_appsec_reputation_profile_actions" "my_reputation_profile_actions" {
  config_id             = 12345
  security_policy_id    = "abcd_123456"
  reputation_profile_id = "12345"
}

output "reputation_profile_actions" {
  value = data.akamai_appsec_reputation_profile_actions.my_reputation_profile_actions
}

Arguments

ArgumentRequiredDescription
config_id✔️A security configuration ID.
security_policy_id✔️A security policy ID.
reputation_profile_idA reputation profile ID.

Attributes

AttributeDescription
actionAction taken any time the reputation profile is triggered. Possible values are:
  • alert. Records the event.
  • deny. Blocks the event.
  • deny. Takes your custom action against the event.
  • none. No action taken.