GuideReference
TrainingSupportCommunity
Guide

Bot management settings

akamai_botman_bot_management_settings

Modifies the bot management settings for the specified security policy.

Example

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

resource "akamai_botman_bot_management_settings" "bot_management_settings" {
  config_id               = data.akamai_appsec_configuration.configuration.config_id
  security_policy_id      = "gms1_134637"
  bot_management_settings = file("${path.module}/bot_management_settings.json")
}

Argument reference

This resource supports the following arguments:

  • config_id (Required). Unique identifier of the security configuration associated with the bot management settings.
  • security_policy_id (Required). Unique identifier of the security policy associated with the bot management settings.
  • bot_management_settings (Required). JSON-formatted collection of bot management settings and their values. In the preceding sample code, the syntax file("${path.module}/bot_management_settings.json") points to the location of a JSON file containing the Bot Manager 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.