Closed tdmalone closed 4 years ago
Thanks for the suggestion, @tdmalone.
Not opposed to your suggestion, though adding support for other commands will make the parser potentially more difficult to maintain.
As long as we add test, happy to accept a pull request!
FYI, my current workaround for this in CI (to avoid all the module output) is:
terraform init .... | grep --invert --extended-regexp '^(\- module\.|\s+Getting source\s)'"
Closing this as this is a nice-to-have and has a workaround via grep
. Would welcome a pull request with tests if someone is interested. Thanks!
Hey guys, love what you've done with this - especially with the much simpler
terraform plan
output when there's no changes::tada:
I was wondering whether it might be possible to expand
landscape
to handle additionalterraform
commands, such asinit
?Setting
TF_IN_AUTOMATION=true
cuts out the last two paragraphs (that's a built-in Terraform feature), but it would be cool if Landscape could perhaps cut this out by default, as well as cut out the list of modules (which are often much longer than the list I have included above)?Related at the official Terraform repo: https://github.com/hashicorp/terraform/issues/18467)