This rule ensures that RDS DB instances have multiple availability zones enabled for better redundancy.
Rule | RDS DB instance multiple az should be enabled |
Framework | NIST 800-53 Revision 5 |
Severity | ✔ Low |
Rule Description:
The rule requires enabling multiple Availability Zones (AZs) for Amazon RDS DB instances to meet the requirements of NIST 800-53 Revision 5. By configuring multi-AZ deployment, you increase the availability and durability of your database by automatically replicating data to a standby instance in a different AZ.
Troubleshooting Steps:
If you encounter any issues while enabling multiple AZs for your RDS DB instance, follow these troubleshooting steps:
Necessary Codes:
There are no specific codes required to enable multiple AZs for an RDS DB instance. It can be done through the AWS Management Console or using CLI commands.
Step-by-Step Guide for Remediation:
Follow these steps to enable multiple AZs for your RDS DB instance:
After applying the changes, your RDS DB instance will be configured for multi-AZ deployment, complying with the NIST 800-53 Revision 5 requirement.
Note: The modification process may cause a brief interruption in the availability of your DB instance, as it will be automatically failed over to the standby instance during the process.
CLI Command for Remediation:
If you prefer using CLI commands to enable multi-AZ deployment, you can follow these steps:
Replaceaws rds modify-db-instance --db-instance-identifier <DB_INSTANCE_IDENTIFIER> --multi-az
<DB_INSTANCE_IDENTIFIER>
with the actual identifier of your RDS DB instance.By following these steps, you will successfully enable multi-AZ deployment for your RDS DB instance, meeting the requirements of NIST 800-53 Revision 5.