GuideReference
TrainingSupportCommunity
Guide

Custom deny action

akamai_botman_custom_deny_action

Creates or modifies a custom deny action.

Example

data "akamai_appsec_configuration" "configuration" {
  name = "Documentation"
}

// USE CASE: User wants to create a new custom deny action

resource "akamai_botman_custom_deny_action" "custom_deny_action" {
  config_id          = data.akamai_appsec_configuration.configuration.config_id
  custom_deny_action = file("${path.module}/custom_deny_action.json")
}

//USE CASE: User wants to update an existing custom deny action

resource "akamai_botman_custom_deny_action" "custom_deny_action" {
  config_id          = 43253
  custom_deny_action = file("${path.module}/custom_deny_action.json")
}

Argument reference

This resource supports the following arguments:

  • config_id (Required). Unique identifier of the security configuration associated with the custom deny action.
  • custom_deny_action (Required). JSON-formatted collection of custom deny action settings and setting values. In the preceding sample code, the syntax file("${path.module}/custom_deny_action.json") points to the location of a JSON file containing the custom deny action settings and values. Use the Bot Manager API or Bot Manager in Akamai Control Center to create a configuration. Then, export your configuration or use the corresponding data source to get the JSON file.