This rule ensures that RDS DB instances are configured to operate in Multiple Availability Zones.
Rule | RDS DB instance multiple az should be enabled |
Framework | NIST 800-53 Revision 5 |
Severity | ✔ Low |
RDS DB Instance Multiple AZ Configuration for NIST 800-53 Revision 5
Rule Description
To comply with the NIST 800-53 Revision 5 standard, it is required to enable multiple Availability Zones (AZs) for your Amazon RDS database instances. This ensures the resilience and availability of your database by automatically replicating your primary RDS instance to a standby instance in a different AZ.
Troubleshooting Steps (if applicable)
If you encounter any issues while configuring multiple AZs for your RDS DB instance, consider the following troubleshooting steps:
Necessary Codes (if applicable)
The following AWS CLI code can be used to enable Multi-AZ deployment for an existing RDS DB instance:
aws rds modify-db-instance --db-instance-identifier <your-db-instance-id> --multi-az
Step-by-Step Guide for Remediation
Follow the steps below to enable Multi-AZ for your RDS DB instance:
Once the Multi-AZ configuration is successfully enabled, your RDS DB instance will have a standby instance created in a different AZ, providing high availability and fault tolerance for your database.