0

I want to migrate existing VPC, subnets, routetables etc from current amazon account to another amazon account using cloud formation.

How can i do this?

Arjun Prasad
  • 173
  • 1
  • 13

1 Answers1

3

If you don't have a CloudFormation template for your existing VPC resources, create one.

Then re-create the VPC on the other AWS account by creating a CloudFormation stack with that template.

You might find CloudFormer useful when creating the template based on your current VPC: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-using-cloudformer.html

Jukka
  • 716
  • 3
  • 4