Client-side security
akamai_botman_client_side_security
Modifies client-side security settings for the specified security configuration. To configure client-side security settings, you need to create a JSON array containing the desired settings and values. That array is then used as the value of the client_side_security
argument.
Example
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 syntaxfile("${path.module}/client_side_security.json")
points to the location of a JSON file containing the client-side security settings and values.
Updated about 1 year ago