Have anybody replicated an AWS Account to a new account? I have a requirement where I need to fully replicated resources from one production AWS Account to a new one if someone could help me out would appreciate it. Also I am replicating to the same region in the new account as well. There are resources like EC2, RDS and many more. I have already exported a CSV of all the resources using AWS Resource Groups.
New contributor
Chaviru is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
-
1This is where infrastructure as code is your friend, if indeed you used it to deploy the original production system. If you did not, now may be the time to retrofit it.jarmod– jarmod2025-11-13 18:13:39 +00:00Commented Nov 13 at 18:13
-
1You can't "replicate" an account. In fact, you can't duplicate any resources even within the same account. Instead, the resources need to be "created" again. That's where it is advisable to deploy resources using systems like CloudFormation or Terraform so that they can easily be redeployed or updated from source files.John Rotenstein– John Rotenstein2025-11-14 03:15:06 +00:00Commented Nov 14 at 3:15
Add a comment
|