Custom-bot category
akamai_botman_custom_bot_category
Creates or modifies a bot category that you can use in addition to the Akamai-defined bot categories.
Example
resource "akamai_botman_custom_bot_category" "custom_bot_category" {
config_id = data.akamai_appsec_configuration.configuration.config_id
custom_bot_category = file("${path.module}/custom_bot_category.json")
}
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the custom bot category.custom_bot_category
(Required). JSON-formatted collection of bot settings and setting values. In the preceding sample code, the syntaxfile("${path.module}/custom_bot_category.json")
points to the location of a JSON file containing the custom category 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.
Updated about 1 year ago