Client-side security
akamai_botman_client_side_security
Returns the client-side security settings for a security configuration. These settings configure Bot Manager to work in different situations.
Scopes: Security configuration
Example
terraform {
required_providers {
akamai = {
source = "akamai/akamai"
}
}
}
provider "akamai" {
edgerc = "~/.edgerc"
}
data "akamai_appsec_configuration" "configuration" {
name = "Documentation"
}
data "akamai_botman_client_side_security" "client_side_security" {
config_id = data.akamai_appsec_configuration.configuration.config_id
}
output "client_side_security_json" {
value = data.akamai_botman_client_side_security.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.
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 client-side security settings and setting values.
See also
Updated over 1 year ago