0

Terragrunt outputs hundreds of lines of text like:

[terragrunt] 2020/12/14 08:55:27 Setting download directory for module /module/name to /module/name/.terragrunt-cache

and

[terragrunt] [/module/name ] 2020/12/14 08:55:27 Module /module/name  must wait for 1 dependencies to finish

Is there any way of quietening this output and only seeing the errors?

Snowcrash
  • 80,579
  • 89
  • 266
  • 376

1 Answers1

0

Currently, there is no builtin option to do it. There is opened issue for that. But since terragrunt logs everything into stderr, you can workaround it by redirecting terragrunt logs:

terragrunt apply 2>/dev/null
rkm
  • 2,971
  • 22
  • 29