Bot category exception
akamai_botman_bot_category_exception
Returns information about all the bots that have been excluded from transactional endpoint bot protection.
Example
data "akamai_appsec_configuration" "configuration" {
name = "Documentation"
}
data "akamai_botman_bot_category_exception" "category_exception" {
config_id = data.akamai_appsec_configuration.configuration.config_id
security_policy_id = "gms1_134637"
}
output "category_exception_json" {
value = data.akamai_botman_bot_category_exception.category_exception.json
}
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the bot category exceptions.security_policy_id
(Required). Unique identifier of the security policy associated with the bot category exceptions.
Output options
The following options can be used to determine the information returned and how that returned information is formatted:
json
. JSON-formatted output containing information about the bot IDs (including bots in both Akamai-defined categories and in custom categories) that have been excluded from behavior anomaly detection.
Updated about 1 year ago