Home > OS >  Exporting a filled up cloudformation stack template?
Exporting a filled up cloudformation stack template?

Time:10-13

I used a CF template to deploy a stack of resources on AWS. Now, I'd like to retrieve that filled up template, so I can convert it to HCL for later Terraform deployment. Where would I get that "filled up" yaml file from?

CodePudding user response:

Here You go:

  1. Go to CloudFormation and pick the stack You want to get the template from: Pick stack

  2. Switch to template tab:Template tab

  3. Here You go, You should see the template. Keep in mind this template can be YAML or JSON, depending on what kind of template You installed. Both should be well readable.

  • Related