This rule ensures the presence of at least one enabled trail in a specific region.
Rule | At least one enabled trail should be present in a region |
Framework | FedRAMP Low Revision 4 |
Severity | ✔ Low |
Rule Description
The "At least one enabled trail should be present in a region for FedRAMP Low Revision 4" rule is a requirement under the FedRAMP Low security control standards. According to this rule, there must be at least one enabled trail present in each region to comply with the required security measures outlined in FedRAMP Low Revision 4.
Troubleshooting Steps (if any)
If you encounter any issues regarding the presence of an enabled trail in a region, follow these troubleshooting steps:
Check the AWS Management Console: Log in to the AWS Management Console and navigate to the CloudTrail service.
Verify the region: Ensure that you are in the correct region where the trail needs to be enabled.
Check existing trails: Review the list of existing CloudTrail trails in the region and verify if they are all enabled.
Enable the trail: If there are no enabled trails in the region, you need to enable CloudTrail.
Necessary Codes (if any)
To enable a CloudTrail trail in a specific region, you can use the AWS Command Line Interface (CLI) with the following code:
aws cloudtrail create-subscription \ --name <trail-name> \ --s3-new-bucket <bucket-name> \ --region <region-name> \ --is-multi-region-trail \ --include-global-service-events
Make sure to replace
<trail-name>
with a suitable name for the trail, <bucket-name>
with the desired name for the S3 bucket where logs will be stored, and <region-name>
with the specific region where the trail should be enabled.Step-by-Step Guide for Remediation
By following these steps, you can ensure that at least one enabled trail is present in each region as per the FedRAMP Low Revision 4 security control standards.