Reputation: 78
I want to use encrypted RDS on AWS. I want to know it is possible export the database to my local mysql. How can I move the encrypted data if our requirements changes.
Is there a way decrypt AWS encrypted RDS with master key?
Upvotes: 1
Views: 416
Reputation: 201058
You can easily export the data from RDS via the mysqldump
command without having to worry about the encryption at all.
Upvotes: 2