Custom-bot category sequence
akamai_botman_custom_bot_category_sequence
Modifies the order in which custom bot categories are evaluated. To set the evaluation order, create a JSON array containing the IDs of your custom bot categories. Categories are evaluated in the same order in which they appear in the array: the category listed first in the array is evaluated first, the category listed second in the array is evaluated second, etc.
Example
resource "akamai_botman_custom_bot_category_sequence" "custom_category_sequence" {
config_id = data.akamai_appsec_configuration.configuration.config_id
category_ids = ["cc9c3f89-e179-4892-89cf-d5e623ba9dc7", "d79285df-e399-43e8-bb0f-c0d980a88e4f", "afa309b8-4fd5-430e-a061-1c61df1d2ac2"]
}
To review your current custom bot category sequence, use the akamai_botman_custom_bot_category_sequence data source.
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the custom bot category sequence.category_ids
(Required). JSON array of custom bot category IDs, with individual IDs separated by using commas. The order of the categories in the array determines the order in which those categories are evaluated.
Updated about 1 year ago