GuideReference
TrainingSupportCommunity
Guide

Challenge action

akamai_botman_challenge_action

Creates or updates a challenge action.

Example

data "akamai_appsec_configuration" "configuration" {
  name = "Documentation"
}

// USE CASE: User wants to create a new challenge action challenge_108949

resource "akamai_botman_challenge_action" "challenge_action" {
  config_id        = data.akamai_appsec_configuration.configuration.config_id
  challenge_action = file("${path.module}/challenge_action.json")
}

// USE CASE: Users wants to update the challenge action with the ID challenge_108949

resource "akamai_botman_challenge_action" "challenge_action" {
  config_id        = data.akamai_appsec_configuration.configuration.config_id
  challenge_action = file("${path.module}/challenge_action.json")
}

Argument reference

This resource supports the following arguments:

  • config_id (Required). Unique identifier of the security configuration associated with the challenge action.
  • challenge_action (Required). JSON-formatted collection of challenge action settings and their values. In the preceding sample code, the syntax file("${path.module}/challenge_action.json") points to the location of a JSON file containing the challenge action 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.