Reputation: 3120
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
Reputation: 146510
The flow is to take a snapshot
Then from Action click Restore Snapshot
option
And a new independent instance is created from the same snapshot
Upvotes: 5