UNCLASSIFIED - NO CUI

Skip to content

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

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

gruntwork-io/terragrunt (gruntwork-io/terragrunt)

v0.69.6

Compare Source

Updated CLI args, config attributes and blocks
  • errors
New Feature: errors configuration block

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:

ignore-error

Retry error:

retry-on-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

Compare Source

Updated CLI args, config attributes and blocks

New Flags
  • --terragrunt-hclfmt-exclude-dir: Exclude directories from HCL formatting when using the hclfmt command. For more, see the docs.

What's Changed

New Contributors

Full Changelog: https://github.com/gruntwork-io/terragrunt/compare/v0.69.3...v0.69.5


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about these updates again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Merge request reports

Loading