π AWS RDS Instance Multi-AZ Deployment is not enabled π’
- Contextual name: π Instance Multi-AZ Deployment is not enabled π’
- ID:
/ce/ca/aws/rds/instance-multi-az-deployment
- Located in: π AWS RDS
Flagsβ
- π’ Policy with categories
- π’ Policy with type
- π’ Production policy
Our Metadataβ
- Policy Type:
COMPLIANCE_POLICY
- Policy Category:
RELIABILITY
Similar Policiesβ
- Cloud Conformity
- Internal
dec-x-5b3728e8
Similar Internal Rulesβ
Rule | Policies | Flags |
---|---|---|
βοΈ dec-x-5b3728e8 | 1 |
Logicβ
- π§ prod.logic.yaml π’
Descriptionβ
Descriptionβ
Amazon RDS offers Multi-AZ deployments that provide enhanced availability and durability for your databases, using synchronous replication to replicate data to a standby instance in a different Availability Zone (AZ). In the event of an infrastructure failure, Amazon RDS automatically fails over to the standby to minimize downtime and ensure business continuity.
Rationaleβ
Database availability is crucial for maintaining service uptime, particularly for applications that are critical to the business. Implementing Multi-AZ deployments with Amazon RDS ensures that your databases are protected against unplanned outages due to hardware failures, network issues, or other disruptions. This configuration enhances both the availability and durability of your database, making it a highly recommended practice for production environments.
Impactβ
Multi-AZ deployments may increase costs due to the additional resources required to maintain a standby instance; however, the benefits of increased availability and reduced risk of downtime outweigh these costs for critical applications.
... see more
Remediationβ
Remediationβ
From Consoleβ
- Login to the AWS Management Console and open the RDS dashboard.
- In the left navigation pane, click on
Databases
.- Select the database instance that needs Multi-AZ deployment to be enabled.
- Click the
Modify
button at the top right.- Scroll down to the
Availability & Durability
section.- Under
Multi-AZ deployment
, selectYes
to enable.- Review the changes and click
Continue
.- On the
Review
page, chooseApply immediately
to make the change without waiting for the next maintenance window, orApply during the next scheduled maintenance window
.- Click
Modify DB Instance
to apply the changes.From Command Lineβ
- Run the following command to modify the RDS instance and enable Multi-AZ:.
aws rds modify-db-instance --region <region-name> --db-instanceidentifier
<db-name> --multi-az --apply-immediately
- Confirm that the Multi-AZ deployment is enabled by running the following command:
aws rds describe-db-instances --region <region-name> --db-instanceidentifier
... [see more](remediation.md)