How to install terragrunt
Terragrunt is a thin wrapper that provides extra tools for keeping your configurations DRY, working with multiple Terraform modules, and managing remote state.https://terragrunt.gruntwork.io/
Steps to install terragrunt command:
1. Download from releases page
https://github.com/gruntwork-io/terragrunt/releases
2. Download the binary for your OS: e.g., On Linux
wget https://github.com/gruntwork-io/terragrunt/releases/download/v0.37.1/terragrunt_linux_amd64
3. Add execute permissions to the binary. E.g., On Linux
chmod u+x terragrunt_linux_amd64
4. Put the binary somewhere on your PATH. E.g., On Linux
mv terragrunt_linux_amd64 /usr/local/bin/terragrunt
5. Check installation
terragrunt --version
Komentar