Update dependency gruntwork-io/terragrunt to v0.69.6
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
gruntwork-io/terragrunt | patch |
v0.69.3 -> v0.69.6
|
|
gruntwork-io/terragrunt | ironbank-github | patch |
v0.69.3 -> v0.69.6
|
⚠ WarningSome dependencies could not be looked up. Check the warning logs for more information.
Release Notes
gruntwork-io/terragrunt (gruntwork-io/terragrunt)
v0.69.6
Updated CLI args, config attributes and blocks
errors
errors
configuration block
New Feature: This release introduces an improved configuration block for managing errors, enhancing the flexibility of retry and ignore mechanisms. These new features provide fine-grained control over error handling, ensuring a smoother and more robust execution flow.
Example
errors {
##### Retry block for transient errors
retry "retry_network" {
retryable_errors = [".*Error: network timeout.*"]
max_attempts = 3
sleep_interval_sec = 5
}
##### Ignore block for non-critical errors
ignore "ignore_warnings" {
ignorable_errors = [
".*Warning: non-critical issue.*"
]
message = "Ignoring non-critical warnings"
}
}
Demo
Ignore error:
Retry error:
What's Changed
- Added
errors
block
Related links
Full Changelog: https://github.com/gruntwork-io/terragrunt/compare/v0.69.5...v0.69.6
v0.69.5
Updated CLI args, config attributes and blocks
New Flags
-
--terragrunt-hclfmt-exclude-dir
: Exclude directories from HCL formatting when using thehclfmt
command. For more, see the docs.
What's Changed
- feat: add
--terragrunt-hclfmt-exclude-dir
parameter tohclfmt
command by @wakeful in https://github.com/gruntwork-io/terragrunt/pull/3609 - fix: Fixing concurrent access to read files map by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3615
- build(deps): bump github.com/ProtonMail/go-crypto from 1.1.0-beta.0-proton to 1.1.3 by @dependabot in https://github.com/gruntwork-io/terragrunt/pull/3598
- build(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc from 1.31.0 to 1.32.0 by @dependabot in https://github.com/gruntwork-io/terragrunt/pull/3597
- build(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.22.0 to 1.32.0 by @dependabot in https://github.com/gruntwork-io/terragrunt/pull/3595
New Contributors
- @wakeful made their first contribution in https://github.com/gruntwork-io/terragrunt/pull/3609
Full Changelog: https://github.com/gruntwork-io/terragrunt/compare/v0.69.3...v0.69.5
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.