You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if there were an option to strip the pwd from the output of TERRAGRUNT_INCLUDE_MODULE_PREFIX=1. It's great that now we can read the terraform output and easily figure out which module is running, but for systems that have a deep directory structure, it's easy for the output to get spammed across the terminal since it lists the whole pwd.
[/home/charles/working/customer/my-project-name/my-infrastructure-directory/some-subdirectory/this-environment/terraform-module-1]
[/home/charles/working/customer/my-project-name/my-infrastructure-directory/some-subdirectory/this-environment/terraform-module-1] Initializing the backend...
[/home/charles/working/customer/my-project-name/my-infrastructure-directory/some-subdirectory/this-environment/terraform-module-1]
[/home/charles/working/customer/my-project-name/my-infrastructure-directory/some-subdirectory/this-environment/terraform-module-2/submodule]
[/home/charles/working/customer/my-project-name/my-infrastructure-directory/some-subdirectory/this-environment/terraform-module-2/submodule] Initializing the backend...
[/home/charles/working/customer/my-project-name/my-infrastructure-directory/some-subdirectory/this-environment/terraform-module-2/submodule]
It would be great it the output were configurable to be just:
[./terraform-module-1]
[./terraform-module-1] Initializing the backend...
[./terraform-module-1]
[./terraform-module-2/submodule]
[./terraform-module-2/submodule] Initializing the backend...
[./terraform-module-2/submodule]
The text was updated successfully, but these errors were encountered:
It would be great if there were an option to strip the
pwd
from the output ofTERRAGRUNT_INCLUDE_MODULE_PREFIX=1
. It's great that now we can read the terraform output and easily figure out which module is running, but for systems that have a deep directory structure, it's easy for the output to get spammed across the terminal since it lists the wholepwd
.It would be great it the output were configurable to be just:
The text was updated successfully, but these errors were encountered: