Bot management settings
akamai_botman_bot_management_settings
Modifies the bot management settings for the specified security policy. To configure a Bot Manager settings you need to create a JSON array containing the desired settings and values. That array is then used as the value of the bot_management_settings
argument.
Example
resource "akamai_botman_bot_management_settings" "bot_management_settings" {
config_id = data.akamai_appsec_configuration.configuration.config_id
security_policy_id = "gms1_134637"
bot_management_settings = file("${path.module}/bot_management_settings.json")
}
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the bot management settings.security_policy_id
(Required). Unique identifier of the security policy associated with the bot management settings.bot_management_settings
(Required). JSON-formatted collection of bot management settings and their values. In the preceding sample code, the syntaxfile("${path.module}/bot_management_settings.json")
points to the location of a JSON file containing the Bot Manager settings and values. Use the Bot Manager API or Bot Manager in Akamai Control Center to create a configuration. Then, export your configuration or use the corresponding data source to get the JSON file.
Updated 11 months ago