Bot sequence
akamai_botman_custom_bot_category_item_sequence
Returns the sequence of bots in the specified custom bot category. Bot Manager evaluates the bots in the listed order, starting from the first item in the list.
data "akamai_botman_custom_bot_category_item_sequence" "category_item_sequence" {
config_id = data.akamai_appsec_configuration.configuration.config_id
category_id = "1a2bcd3e-4d5f-6g7h-8i9j-0k1l2m3n4o5p"
}
output "category_item_sequence_json" {
value = data.akamai_botman_custom_bot_category_item_sequence.category_item_sequence
}
Changes to Outputs:
+ category_item_sequence_json = {
+ bot_ids = [
+ "1a2bcd3e-8i9j-6g7h-4d5f-0k1l2m3n4o5p",
+ "647efc82-123a-45b6-78c9-1a2bcd3e4a8z",
+ "1x2y3zd4-a1b2-c3d4-87b4-bf7623550472",
]
+ category_id = "1a2bcd3e-4d5f-6g7h-8i9j-0k1l2m3n4o5p"
+ config_id = 123456
+ id = "123456:1a2bcd3e-4d5f-6g7h-8i9j-0k1l2m3n4o5p"
}
Arguments
Specify the config_id
and category_id
for the category you want to update.
Argument | Required | Description |
---|---|---|
config_id | ✔ | Identifies the security configuration associated with the custom bot category sequence. |
category_id | ✔ | Identifies the bot category. |
Attributes
Returned to you is a bot_ids
set with the IDs listed in order.
Attribute | Description |
---|---|
config_id | Identifies the security configuration associated with the custom bot category sequence. |
category_id | Identifies the bot category. |
bot_ids | Array of bot IDs, with individual IDs separated by using commas. The order of the bots in the array determines the order in which those bots are evaluated |
Updated 7 months ago