postgresql - How to change RDS instance for Elastic Beanstalk -
i have set elastic beanstalk environment , allowed created rds instance associated it.
now, want change database instance instance, how do while maintaining rds endpoint?
thank you!
let's you're connecting instance , want change instance b, while maintaining db endpoint.
you can this:
- snapshot instance b
aws rds create-db-snapshot
. - delete instance
aws rds delete-db-instance
. - restore using snapshot b using
aws rds restore-db-instance-from-db-snapshot
.
Comments
Post a Comment