How can I export and import EC2 Launch Templates?

0

How can I export and import EC2 Launch Templates, including version history and launch scripts (advanced)? Exporting to another EC2 account/region is not sufficient, I need a way to get them off AWS and stored locally.

Thanks!

2 Answers
1
Accepted Answer

Hi Sensible Saas,

There is no out of the box way to export a launch template.

What you could do is to exploit the describe template (https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-launch-templates.html) and describe versions (https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-launch-template-versions.html) api/sdk and use a lambda function to extract to a specific JSON structure that fits your use case.

Similarly you can then refer engineer your logic and use the create launch template and create launch template versions to recreate the resources.

Hope it inspires you

profile picture
EXPERT
answered a year ago
profile picture
EXPERT
reviewed a month ago
  • Thanks, was hoping for a trivial way but sounds like it would be easier to just rebuild with Terraform/Ansible

1

A better way than exporting ones made in the console is leveraging CloudFormation to create the LaunchTemplates, this way you can always have a JSON/YAML format of the Launch Template that you can go back and look at.

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html

profile pictureAWS
EXPERT
Rob_H
answered a year ago
  • Why would anyone use CloudFormation over Terraform?

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions