GuideReference
TrainingSupportCommunity
Guide

Client-side security

akamai_botman_client_side_security

Modifies client-side security settings for the specified security configuration.

Example

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

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

Argument reference

This resource supports the following arguments:

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