Recategorized Akamai-defined bot
akamai_botman_recategorized_akamai_defined_bot
Returns information about Akamai-defined bots that you moved to a different category.
Example
data "akamai_botman_recategorized_akamai_defined_bot" "recategorized_bots" {
config_id = data.akamai_appsec_configuration.configuration.config_id
}
output "recategorized_bots_json" {
value = data.akamai_botman_recategorized_akamai_defined_bot.recategorized_bot.json
}
data "akamai_botman_recategorized_akamai_defined_bot" "recategorized_bot" {
config_id = data.akamai_appsec_configuration.configuration.config_id
bot_id = "cc9c3f89-e179-4892-89cf-d5e623ba9dc7"
}
output "recategorized_bot_json" {
value = data.akamai_botman_recategorized_akamai_defined_bot.recategorized_bot.json
}
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the recategorized bot.bot_id
(Optional). Unique identifier of the recategorized bot you want returned. If omitted, all your recategorized bots are returned.
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 Akamai-defined bots that have been moved to a custom bot category.
Updated about 1 year ago