Update dependency gruntwork-io/terragrunt to v0.69.0
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
gruntwork-io/terragrunt | minor |
v0.68.15 -> v0.69.0
|
|
gruntwork-io/terragrunt | ironbank-github | minor |
v0.68.15 -> v0.69.0
|
⚠ WarningSome dependencies could not be looked up. Check the warning logs for more information.
Release Notes
gruntwork-io/terragrunt (gruntwork-io/terragrunt)
v0.69.0
TFLint update
The internal version of TFLint has been updated from v0.47.0
to v0.50.3
.
Given that this might result in breakage for users with tflint hooks, this is being released as a new minor release.
What's Changed
- chore: Pin tflint to
v0.50.3
by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3569
Full Changelog: https://github.com/gruntwork-io/terragrunt/compare/v0.68.17...v0.69.0
v0.68.17
Updated CLI args, config attributes and blocks
terraform
What's Changed
- Introduced support for detecting and handling symlinked modules, ensuring seamless module discovery.
- Quick start documentation update.
- Improved documentation for
feature
andexclude
.
Related links
- https://github.com/gruntwork-io/terragrunt/pull/3562
- https://github.com/gruntwork-io/terragrunt/pull/3581
- https://github.com/gruntwork-io/terragrunt/pull/3568
Full Changelog: https://github.com/gruntwork-io/terragrunt/compare/v0.68.16...v0.68.17
v0.68.16
Updated CLI args, config attributes and blocks
exclude
feature
exclude
configuration block
New Feature: The exclude
configuration block allows for dynamic exclusion of units from the run queue, similar to the now deprecated skip
attribute. The exclude
configuration block allows for more control over exactly how units are excluded from the run queue, and integrates very well with the feature
block introduced in v0.68.9.
For more information, read the docs.
Example
### Exclude configurations allowing for dynamically determining when and how to exclude execution of nodes in the Terragrunt graph
exclude {
if = feature.feature_name.value # Boolean expression that determines if the node should be excluded.
actions = ["all"] # Actions to exclude when active. Other options might be ["plan", "apply", "all_except_output"], etc
exclude_dependencies = feature.feature_name.value # Exclude dependencies of the node as well
}
Demo
What's Changed
- feat: Introduced a new
exclude
block, enabling users to define more advanced and flexible criteria for excluding specific units, enhancing customization and control over unit selection processes. - fix: Fixed handling of empty
feature
blocks - fix: Fix spelling of
RenderJSONithMetadata
asRenderJSONWithMetadata
Related links
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.