Closed Latyn4ik closed 1 year ago
I'm not a Terragrunt user myself, so I can't say if I'll get to that in the foreseeable future. If we add it to our repertoire later on (at work, that is), I'll definitely consider it.
terragrunt is a terraform wrapper which basically just forward commands to terraform. I've tried to replace the terraform
command by terragrunt
and it works for me ;)
The main difference between them is that terragrunt use .hcl
files as entry contrary to .tf
for terraform
Hope this will help!
@Latyn4ik
At the moment I change all the terraform commands in the main (3 places) to terragrunt. built with:
good luck
You can also just cd
into the .terragrunt-cache/xxx/xxx
directory and run tftui
from there.
Perhaps adding a flag to toggle it to use terragrunt
instead of terraform
would be an easy permanent fix? tftui -T
or something?
Submitted a PR for this: https://github.com/idoavrah/terraform-tui/pull/30
Released version 0.5 that adds support for terragrunt (simply add/alias the '-e terragrunt' switch).
Thanks @jonwtech :)
Are you planning to add Terragrunt support?