This rule ensures that RDS DB instance is configured to use multiple availability zones for high availability.
Rule | RDS DB instance multiple az should be enabled |
Framework | NIST 800-53 Revision 4 |
Severity | ✔ Low |
RDS DB Instance Multiple AZ Configuration for NIST 800-53 Revision 4
Rule/Policy Description
To adhere to the security requirements specified in NIST 800-53 Revision 4, it is recommended to enable Multiple Availability Zone (AZ) configuration for the RDS (Relational Database Service) DB instance. This configuration enhances the availability and durability of the DB instance by automatically synchronously replicating data to a standby replica in a different Availability Zone within the same region.
Troubleshooting Steps (if applicable)
If you encounter any issues while enabling Multiple AZ configuration for your RDS DB instance, consider the following troubleshooting steps:
Necessary Codes (if applicable)
To enable Multiple AZ configuration for your RDS DB instance, you can use the AWS Command Line Interface (AWS CLI) or AWS Management Console. Here is an example using AWS CLI:
aws rds modify-db-instance --db-instance-identifier <instance-identifier> --multi-az
Replace
<instance-identifier>
with the ID or name of your RDS DB instance.Step-by-Step Guide for Remediation
Follow these steps to enable Multiple AZ configuration for your RDS DB instance:
After following these steps, AWS will start the process of creating a standby replica of your RDS DB instance in a different Availability Zone. The process may take some time depending on the size of your database. Once the configuration is completed, your RDS DB instance will be running in Multiple AZs, providing better resilience against zone-level failures.
Always monitor your RDS instance to ensure that replication and failover are working as expected. Regularly test failover scenarios to verify the availability of your Multi-AZ setup.
Remember to review and update your overall security controls to align with the NIST 800-53 guidelines in other aspects of your AWS infrastructure as well.