DR for RDS
# Create manual snapshot
aws rds create-db-snapshot \
--db-instance-identifier mydb \
--db-snapshot-identifier mydb-snapshot
# Restore from snapshot
aws rds restore-db-instance-from-db-snapshot \
--db-instance-identifier mydb-restored \
--db-snapshot-identifier mydb-snapshot# Create cross-region read replica
aws rds create-db-instance-read-replica \
--db-instance-identifier mydb-replica \
--source-db-instance-identifier arn:aws:rds:us-east-1:123456789012:db:mydb \
--region us-west-2
# Promote to master
aws rds promote-read-replica \
--db-instance-identifier mydb-replicaLast updated