Reputation profile analysis
akamai_appsec_reputation_profile_analysis
Modifies the reputation analysis settings for a security policy. These settings include the following:
- The
forward_to_http_header
parameter, which indicates whether client reputation details are added to requests forwarded to origin in an HTTP header. - The
forward_shared_ip_to_http_header_siem
parameter, which specifies whether a value is added indicating that shared IPs addresses are included in HTTP headers and in SIEM integration events.
resource "akamai_appsec_reputation_analysis" "my_reputation_analysis" {
config_id = 12345
security_policy_id = "abcd_123456"
forward_to_http_header = true
forward_shared_ip_to_http_header_siem = true
}
Arguments
Argument | Required | Description |
---|---|---|
config_id | ✔️ | A security configuration ID. |
security_policy_id | ✔️ | A security policy ID. |
forward_to_http_header | ✔️ | When set to true to add client reputation details to requests forwarded to the origin server in an HTTP header. |
forward_shared_ip_to_http_header_siem | ✔️ | When set to true, it adds a value indicating that shared IPs are included in HTTP header and SIEM integration. |
Updated 2 days ago