Custom client sequence
akamai_botman_custom_client_sequence
Returns a list of your custom clients in sequential order.
Example
data "akamai_botman_custom_client_sequence" "my_custom_client_sequence" {
  config_id = 12345
}
output "my_custom_client_sequence" {
  value = data.akamai_botman_custom_client_sequence.my_custom_client_sequence
}
Changes to Outputs:
	+ my_custom_client_sequence  = {
      	+ config_id         = 12345
      	+ custom_client_ids = [
  					"1234abcd-5678-efgh-910i-jk11l12mn13o",
  					"5678efgh-1234-abcd-24ef-689ghijk1011",
  				]
     	  + id                = "12345"
    }
variable "config_id" {
  type 				= integer
  description = "My config ID"
  default 		= 12345 // one of the returned values
 }
// local
config_id = data.akamai_botman_custom_bot_category_sequence.config_id 
Argument
This data source requires the config_id for the security configuration associated with your custom clients.
Attributes
Returned to you is a custom_client_ids set with the IDs listed in order.
| Attribute | Description | 
|---|---|
| config_id | A configuration's ID. | 
| custom_client_ids | A list of custom client IDs in sequential order. | 
Updated almost 2 years ago
