Bot management settings
akamai_botman_bot_management_settings
Returns information about your bot management settings.
Scopes: Security policy
Example
terraform {
required_providers {
akamai = {
source = "akamai/akamai"
}
}
}
provider "akamai" {
edgerc = "~/.edgerc"
}
data "akamai_appsec_configuration" "configuration" {
name = "Documentation"
}
data "akamai_botman_bot_management_settings" "management_settings" {
config_id = data.akamai_appsec_configuration.configuration.config_id
security_policy_id = "gms1_134637"
}
output "management_settings_json" {
value = data.akamai_botman_bot_management_settings.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.
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 your bot management settings and how they’re configured.
Updated over 1 year ago