Ensure IAM user access keys are rotated every 90 days for security compliance.
Rule | IAM user access keys should be rotated at least every 90 days |
Framework | NIST 800-53 Revision 4 |
Severity | ✔ Low |
Rule Description:
IAM user access keys should be rotated at least every 90 days to comply with NIST 800-53 Revision 4. Regularly rotating access keys helps to reduce the risk of unauthorized access and potential security breaches.
Troubleshooting Steps:
Necessary Codes:
No specific code is required for this rule. It can be enforced using AWS Identity and Access Management (IAM) policies and configurations.
Remediation Steps:
Identify IAM users with access keys older than 90 days.
aws iam list-users --query 'Users[].{UserName:UserName}' --output table
Notify users whose access keys need rotation.
Rotate access keys for each user.
Periodically monitor access key age and rotation compliance.
Additional Notes: