Please does anyone know any resources in kodekloud that I can use to integrate cloudformation to terragrunt? I have some cloudformation templates that I need to convert to terragrunt and there are modules that I have to use.
Hi @rarimoro
You are looking for a solution to migrate CloudFormation resources in AWS to Terragrunt. I don’t think KodeKloud has a specific tool for this case.
Instead of looking for a tool, you should create a clear migration plan. Migrating Infrastructure as Code is not easy. You must make sure the configuration stays the same after the migration, and also make sure the new tool can manage all resources before removing the old IaC tool.
You should consider using Terraform import to bring the existing resources into Terraform state. You can refer to this guide:
With the import feature, you do not need to remove the CloudFormation stack immediately. You can import the existing resources into Terraform and start managing them there. After everything is stable, you can then consider cleaning up the CloudFormation resources.