Challenge interception rules
akamai_botman_challenge_interception_rules
Modifies a challenge interception rule.
Example
data "akamai_appsec_configuration" "configuration" {
name = "Documentation"
}
resource "akamai_botman_challenge_interception_rules" "interception_rules" {
config_id = data.akamai_appsec_configuration.configuration.config_id
challenge_interception_rules = file("${path.module}/challenge_interception_rules.json")
}
Argument reference
This resource supports the following arguments:
config_id
(Required). Unique identifier of the security configuration associated with the challenge interception ruleschallenge_interception_rules
(Required). JSON-formatted collection of challenge interception rule settings and values. In the preceding sample code, the syntaxfile("${path.module}/challenge_interception_rules.json")
points to the location of a JSON file containing the challenge interception rules 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