anonn023432
anonn023432

Reputation: 3120

AWS: Clone RDS for separate EB instance

I want to create a copy of my production environment to use for staging on AWS. I'm using Rails with RDS.

I found this information on how to restore from an RDS Snapshot but I want it to be restored to a new RDS, essentially get a clone of the database. Then I want to use this db copy with a clone of an EB instance which I will configure similarly to the production server but with the staging environment.

Is there a way I can clone my whole db volume and use it as a new volume with the second EB instance?

Upvotes: 3

Views: 887

Answers (1)

Tarun Lalwani
Tarun Lalwani

Reputation: 146510

The flow is to take a snapshot

Snapshot

Then from Action click Restore Snapshot option

Restore Snapshot

And a new independent instance is created from the same snapshot

RBD Instance

Upvotes: 5

Related Questions