This rule ensures logging is enabled on AWS WAFv2 regional and global web access control lists.
Rule | Logging should be enabled on AWS WAFv2 regional and global web access control list (ACLs) |
Framework | HIPAA |
Severity | ✔ Low |
Rule Description:
Logging should be enabled on both regional and global web access control lists (ACLs) for HIPAA compliance in AWS WAFv2. Enabling logging helps track and monitor access attempts on the ACLs, allowing for effective security analysis and compliance auditing.
Troubleshooting Steps (if applicable):
Necessary Codes (if applicable):
AWS CLI or SDKs can be used to enable logging on AWS WAFv2 regional and global ACLs. Here is an example for the AWS CLI command:
aws wafv2 update-web-acl \ --name <web-acl-name> \ --scope <REGIONAL | CLOUDFRONT> \ --id <web-acl-id> \ --logging-configuration file://logging-configuration.json
Make sure to replace
<web-acl-name>
, <REGIONAL | CLOUDFRONT>
, <web-acl-id>
, and file://logging-configuration.json
with the appropriate values.Step-by-Step Guide for Remediation:
Conclusion:
Enabling logging on AWS WAFv2 regional and global web access control lists ensures compliance with HIPAA regulations. By following the troubleshooting steps and using the necessary codes, the logging configuration can be enabled successfully. The step-by-step guide provides a clear path to remediation for compliance.