Ensure logging is enabled on AWS WAFv2 regional and global web access control list (ACLs).
Rule | Logging should be enabled on AWS WAFv2 regional and global web access control list (ACLs) |
Framework | SOC 2 |
Severity | ✔ Low |
Description
AWS WAFv2 is a web application firewall service that helps protect your web applications from common web exploits. Enabling logging on AWS WAFv2 regional and global web access control lists (ACLs) is a crucial security measure to ensure compliance with SOC 2 requirements. SOC 2 is a widely recognized auditing standard that focuses on the security, availability, processing integrity, confidentiality, and privacy of customer data.
Enabling logging allows you to collect and analyze logs of web requests that are inspected by the ACLs. These logs provide valuable insights into potential security threats, helping you monitor and audit your web application traffic. By enabling logging on AWS WAFv2 ACLs, you can effectively track and investigate any suspicious activities, meet compliance requirements, and strengthen your overall security posture.
Troubleshooting Steps (if applicable)
Necessary Codes (if applicable)
There are no specific codes for enabling logging on AWS WAFv2 ACLs. Instead, you need to perform the following steps using the AWS Management Console or the AWS CLI.
Step-by-Step Guide for Remediation
Enabling Logging on AWS WAFv2 ACLs (AWS Management Console):
Enabling Logging on AWS WAFv2 ACLs (AWS CLI):
aws wafv2 put-logging-configuration --resource-arn <acl-arn> --logging-configuration '{"LogDestinationConfigs": ["<log-destination-arn>"]}'
Replace
<acl-arn>
with the ARN (Amazon Resource Name) of your ACL and <log-destination-arn>
with the ARN of your desired log destination.LogDestinationConfigs
parameter to specify multiple log destinations if needed.Conclusion
Enabling logging on AWS WAFv2 regional and global web access control lists for SOC 2 compliance helps in monitoring and auditing web application traffic, identifying potential security threats, and maintaining a secure environment. By following the remediation steps, you can ensure that logging is correctly enabled on your AWS WAFv2 ACLs, providing valuable insights for your security and compliance needs.