Terragrunt output-all

Terragrunt output-all prints a lot of noise is there a way to have an output like terraform output

All the terraform output goes to stdout, and the “noise” from the logs go to stderr, so you should be able to see all the outputs by just observing stdout. E.g:

terragrunt output-all 2>/dev/null

Or if you want to see the logs, you can redirect the outputs to a file:

terragrunt output-all | tee outputs.txt

Note that since terragrunt will run the output calls concurrently, there is no way to avoid interleaving of outputs at the moment.

Yori

1 Like

it worked with me thanks @yoriy