I have set up my Elastic Beanstalk environment and allowed it to created the RDS instance associated with it.
Now, I want to change the database instance to another instance, but how do I do so while maintaining the RDS endpoint?
Thank you!
I have set up my Elastic Beanstalk environment and allowed it to created the RDS instance associated with it.
Now, I want to change the database instance to another instance, but how do I do so while maintaining the RDS endpoint?
Thank you!
Let's say you're connecting to instance A and want to change it to instance B, while maintaining the DB endpoint.
You can do it like this:
aws rds create-db-snapshot
.aws rds delete-db-instance
.aws rds restore-db-instance-from-db-snapshot
.