🐛 Bug fixes
Newlines reduced in Error Logging for Configuration Errors
Logging for configuration errors has been compacted to reduce noise, and make errors easier to read.
# Before
14:09:25.892 ERROR Error: Error in function call
14:09:25.892 ERROR on terragrunt.hcl line 3, in locals:
14:09:25.892 ERROR 3: requires_auth = run_cmd("exit", "1") // intentional error
14:09:25.892 ERROR
14:09:25.892 ERROR Call to function "run_cmd" failed: Failed to execute "exit 1" in .
exec: "exit": executable file not found in $PATH.
# After
15:19:50.937 ERROR Error: Error in function call
15:19:50.937 ERROR on terragrunt.hcl line 3, in locals:
15:19:50.937 ERROR Error: Error in function call
15:19:50.937 ERROR on terragrunt.hcl line 3, in locals:
15:19:50.937 ERROR 3: requires_auth = run_cmd("exit", "1") // intentional error
15:19:50.937 ERROR 3: fail = run_cmd("exit", "1") // intentional error
15:19:50.937 ERROR Call to function "run_cmd" failed: Failed to execute "exit 1" in .
15:19:50.937 ERROR exec: "exit": executable file not found in $PATH.
Improved Cycle Detection Logic for stack generate
On the default filesystem for macOS, path length was likely to result in an error before internal cycle detection logic, so cycle detection was updated to leverage a maximum path length of 1024 characters as an earlier exit for all operating systems.
Excessive warning for bootstrap requirement resolved
Internal logic for determination that backends required bootstrapping was adjusted to no longer leverage the value of the OpenTofu state file.
While cheaper than making a network request to assess the current state of backend resources, it also resulted in false negatives, which triggered excessive backend bootstrap warnings.
What's Changed
- fix: New lines in TF diagnostic log by @levkohimins in #4108
- fix: Stack cycles detection improvements by @denis256 in #4106
- fix: Fixing excessive warning for bootstrap by @yhakbar in #4107
Full Changelog: v0.77.3...v0.77.4