-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency gruntwork-io/terragrunt to v0.73.1 #162
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/gruntwork-io-terragrunt-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36f1cd0
to
aa420a3
Compare
aa420a3
to
32766ee
Compare
32766ee
to
a16f5c3
Compare
e9edce8
to
c1c9f87
Compare
67216bf
to
0499951
Compare
0499951
to
c366e5b
Compare
c366e5b
to
d8f5230
Compare
d8f5230
to
55143ab
Compare
778b14f
to
53488a1
Compare
53488a1
to
00d7401
Compare
00d7401
to
29028c1
Compare
4d991e8
to
7df5857
Compare
7df5857
to
34e10f8
Compare
34e10f8
to
63ca397
Compare
63ca397
to
c1cd15e
Compare
c1cd15e
to
d591d11
Compare
d591d11
to
4ed4f68
Compare
4ed4f68
to
05ce1b0
Compare
05ce1b0
to
5a3e6be
Compare
5a3e6be
to
b41e26b
Compare
b41e26b
to
123b437
Compare
123b437
to
d961c3a
Compare
d961c3a
to
1d5cc17
Compare
1d5cc17
to
ba9b885
Compare
ba9b885
to
e2f91ed
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.44.0
->0.73.1
Release Notes
gruntwork-io/terragrunt (gruntwork-io/terragrunt)
v0.73.1
Compare Source
✨ New Features
Stack
clean
commandAdded a new
clean
sub-command to theterragrunt stack
command, enabling users to remove generated stack files.To try it out, make sure you enable the stacks experiment.
Read the docs to learn more.
What's Changed
stack clean
command to clean stack generated files by @denis256 in https://github.com/gruntwork-io/terragrunt/pull/3871--queue-include-unit-reading
by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3869.hcl
configs and OpenTofu.tf
configs in the FileTree component by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3868Full Changelog: gruntwork-io/terragrunt@v0.73.0...v0.73.1
v0.73.0
Compare Source
🛠️ Breaking Changes
Removal of
terragrunt-
prefix in flagsAll Terragrunt CLI flags no longer start with the
terragrunt-
prefix. This will not immediately break workflows, but will start to emit warnings for users.We will announce removal of support for flags without the
terragrunt-
prefix well in advance, and it will be done in a future minor release beforev1.0
.You can opt in to making this a breaking change today via usage of the terragrunt-prefix-flags strict control.
Rename of
TERRAGRUNT_
prefixed environment variablesAll Terragrunt environment variables are no longer prefixed with
TERRAGRUNT_
, but are now instead prefixed withTG_
. This will not immediately break workflows, but will start to emit warnings for users.We do not currently have plans to remove support for environment variables with the
TERRAGRUNT_
prefix, and are aiming to support them after the release ofv1.0
, as we know this can be a more difficult configuration to change.You can opt in to making this a breaking change today via usage of the terragrunt-prefix-env-vars strict control.
Removal of support for the Terragrunt default command
Prior to this release, Terragrunt would forward all commands that were not defined in the Terragrunt CLI directly to OpenTofu/Terraform. With the introduction of the new
run
command, this behavior is no longer necessary, nor desirable. In addition to supporting the newrun
command, Terragrunt now also supports explicit OpenTofu shortcuts. You can learn more about both below.We will announce removal of support for the default command of Terragrunt well in advance, and it will be done in a future minor release before
v1.0
.You can opt in to making this a breaking change today via usage of the default-command strict control.
✨ New Features
All of the features released in this release require usage of the
cli-redesign
experiment.New
run
commandThis command replaces what used to be the responsibility of the default command in Terragrunt. Going forward, when users want to explicitly have Terragrunt run an OpenTofu/Terraform command on their behalf, they'll use the
run
command.In a future release, this command will also gain the two following flags to replace the functionality of the
run-all
andgraph
commands:--all
: Replaces therun-all
command.--graph
: Replaces thegraph
command.You can learn more about the run command here
New
exec
commandThis command provides tooling to explicitly execute an arbitrary command using Terragrunt (even if it's not related to OpenTofu/Terraform). It users additional control over exactly what Terragrunt does when it's executing a command, and gives them additional flexibility they wouldn't have otherwise.
You can learn more about the exec command here
New
info strict
commandThe new
info strict
command gives users a quick way to determine which strict controls are available in the Terragrunt CLI using the terminal.We'll be making updates in the near future to update the UI/UX of the command, but we've released an early version for preview via the
cli-redesign
experiment flag.What's Changed
exec
,run
,info strict
commands implementation, flags renaming. by @levkohimins in https://github.com/gruntwork-io/terragrunt/pull/3723cli-redesign
migration guide by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3866Full Changelog: gruntwork-io/terragrunt@v0.72.9...v0.73.0
Demonstration
v0.72.9
Compare Source
✨ New Features
Stack
output
commandThe
terragrunt stack
command now includes a newoutput
sub-command, enabling users to retrieve and interact with outputs from multiple units within a Terragrunt stack.To try it out, make sure you enable the stacks experiment.
Read the docs to learn more.
Example usage:
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.72.8...v0.72.9
v0.72.8
Compare Source
What's Changed
SECURITY.md
file by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3827Full Changelog: gruntwork-io/terragrunt@v0.72.6...v0.72.8
v0.72.6
Compare Source
What's Changed
--terragrunt-auth-provider-cmd
and redo the contents. by @rorynolan in https://github.com/gruntwork-io/terragrunt/pull/3798New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.72.5...v0.72.6
v0.72.5
Compare Source
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.72.4...v0.72.5
v0.72.4
Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.72.3...v0.72.4
v0.72.3
Compare Source
What's Changed
h
,j
,k
,l
in catalog command. by @wakeful in https://github.com/gruntwork-io/terragrunt/pull/3797Full Changelog: gruntwork-io/terragrunt@v0.72.2...v0.72.3
v0.72.2
Compare Source
✨ New Features
Stack
run
commandThe
terragrunt stack
command now supports a newrun
sub-command.The
run
command automatically generates a Terragrunt stack using theterragrunt.stack.hcl
file found in the current directory, then runs all the units within it in a fashion very similar to therun-all
command.To try it out, make sure you enable the stacks experiment.
Read the docs to learn more.
Example usage:
Native OpenTofu State Encryption
Terragrunt now has native support for OpenTofu state encryption configurations.
In addition to the existing
backend
andconfig
attributes on theremote_state
configuration block, Terragrunt now supports anencryption
attribute that configures OpenTofu backend state encryption automatically, with type validation for a native experience using state encryption.The currently supported key providers are:
pbkdf2
aws_kms
gcp_kms
To integrate this new feature into your projects read the docs.
Special thanks for @norman-zon for taking on the work of integrating this into Terragrunt and collaborating with us on resolution!
What's Changed
stack run
command by @denis256 in https://github.com/gruntwork-io/terragrunt/pull/3762New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.72.1...v0.72.2
v0.72.1
Compare Source
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.72.0...v0.72.1
v0.72.0
Compare Source
Description
OpenTofu 1.9 support: We are now testing Terragrunt against OpenTofu 1.9, and is confirmed to be working.
NOTE: Although this release is marked as backward incompatible, it is functionally compatible as nothing has been changed in Terragrunt internals. The minor version release is useful to mark the change in the OpenTofu version that is being tested.
What's Changed
TestDownloadTerraformSourceFromLocalFolderWithManifest
test by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3744Full Changelog: gruntwork-io/terragrunt@v0.71.5...v0.72.0
v0.71.5
Compare Source
🔧 Fixes
Fixed bug that prevented OpenTofu/Terraform stdout from being streamed in real time.
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.71.4...v0.71.5
v0.71.4
Compare Source
✨ New Features
The
terraform
configuration block now accepts anexclude_from_copy
attribute that does the opposite of theinclude_in_copy
attribute.For more information, read the docs.
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.71.3...v0.71.4
v0.71.3
Compare Source
✨ New Features
The
terragrunt stack generate
command, now available behind the--experiment stacks
flag generates a.terragrunt-stack
directory by dynamically generating Terragrunt units from the configurations defined in aterragrunt.stack.hcl
file.To learn more, read the docs.
Example usage:
What's Changed
terragrunt stack generate
experiment by @denis256 in https://github.com/gruntwork-io/terragrunt/pull/3627Full Changelog: gruntwork-io/terragrunt@v0.71.2...v0.71.3
v0.71.2
Compare Source
What's Changed
%tf-command
log placeholder for custom format by @levkohimins in https://github.com/gruntwork-io/terragrunt/pull/3709New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.71.1...v0.71.2
v0.71.1
Compare Source
What's Changed
log-disable-error-summary
flag by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3687Full Changelog: gruntwork-io/terragrunt@v0.71.0...v0.71.1
v0.71.0
Compare Source
🔧 Fixes
Terragrunt stdout and stderr streams have been adjusted to more closely align with what users expect when using a tool orchestrating OpenTofu/Terraform.
For more information, read the following docs.
🛠️ Breaking Changes
While a bugfix, if you were relying on the incorrect behavior Terragrunt used, redirecting OpenTofu/Terraform stdout to stderr, you will experience a breaking change in this release.
To avoid having this be a breaking release, you can either use Terragrunt
stdout
instead ofstderr
for inspecting OpenTofu/Terraform stdout, or you can use stream redirection to reproduce the buggy behavior.terragrunt plan 1>&2
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.70.4...v0.71.0
v0.70.4
Compare Source
What's Changed
root-file-name
default forcatalog
andscaffold
by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3682root
include forcatalog
andscaffold
by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3683Full Changelog: gruntwork-io/terragrunt@v0.70.3...v0.70.4
v0.70.3
Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.70.2...v0.70.3
v0.70.2
Compare Source
What's Changed
tf-command-args
support for custom log configuration by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3679Full Changelog: gruntwork-io/terragrunt@v0.70.1...v0.70.2
v0.70.1
Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.70.0...v0.70.1
v0.70.0
Compare Source
✨ New Features
Terragrunt now supports a native Experiment Mode to try out the latest features in Terragrunt before they're fully stable. Over time, we'll be moving some opt-in functionality to this system, and we'll be introducing new features behind it to give users granularity in their use of experimental functionality in Terragrunt.
As part of this new system, we'll also be documenting our experiments in much more detail so that you know exactly what they do, and what is required for them to reach full stability.
The catalog and scaffold commands now support configurability in the root configuration include used for their scaffolding.
This allows users to use a root Terragrunt configuration named anything they like, and scaffold new units conveniently, pulling those configurations in with a simple CLI flag.
🛠️ Breaking Changes
The recent work introduced in #3672 to support symlinks has been downgraded to an experiment. We merged in this feature believing it had enough testing to be supported at launch, but quite a bit of unexpected regression occurred as a consequence.
If you are still using this functionality, use the
--experiment symlinks
flag to re-enable it in your environments. For more information, you can read the documentation on Controlling Experiment Mode.This release also deprecates one of the longest lasting patterns of Terragrunt usage, the root
terragrunt.hcl
file.To reiterate the note in the migration guide, this is not going to be a breaking change for a very long time, but we want to start encouraging users to adopt new patterns.
The practice of using
terragrunt.hcl
as the root of Terragrunt configurations has been harmful to new Terragrunt users and experienced users alike, and we want to have Terragrunt start communicating better practices.You will have ample warning before this functionality is no longer supported.
📖 Documentation Updates
The Features section of the docs has been revamped significantly to improve the ability to understand and use Terragrunt features at a glance. Much more will be done in the near future to improve the experience of using Terragrunt documentation, and your feedback is always actively solicited!
What's Changed
terragrunt.hcl
as root by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3588ProviderCacheWithProviderCacheDir
test by @levkohimins in https://github.com/gruntwork-io/terragrunt/pull/3656Full Changelog: gruntwork-io/terragrunt@v0.69.13...v0.70.0
v0.69.13
Compare Source
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.69.12...v0.69.13
v0.69.12
Compare Source
What's Changed
endpoints.s3
inremote_state
block. by @wakeful in https://github.com/gruntwork-io/terragrunt/pull/3643Full Changelog: gruntwork-io/terragrunt@v0.69.11...v0.69.12
v0.69.11
Compare Source
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.69.10...v0.69.11
v0.69.10
Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.69.9...v0.69.10
v0.69.9
Compare Source
Updated CLI args, config attributes and blocks
engine
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.69.8...v0.69.9
v0.69.8
Compare Source
Updated CLI args, config attributes and blocks
errors
What's Changed
error
block.error
block.Full Changelog: gruntwork-io/terragrunt@v0.69.7...v0.69.8
v0.69.7
Compare Source
New built-in function
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.69.6...v0.69.7
v0.69.6
Compare Source
Updated CLI args, config attributes and blocks
errors
New Feature:
errors
configuration blockThis 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
Demo
Ignore error:
Retry error:
What's Changed
errors
blockRelated links
Full Changelog: gruntwork-io/terragrunt@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 thehclfmt
command. For more, see the docs.What's Changed
--terragrunt-hclfmt-exclude-dir
parameter tohclfmt
command by @wakeful in https://github.com/gruntwork-io/terragrunt/pull/3609New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.69.3...v0.69.5
v0.69.3
Compare Source
What's Changed
error_hook
processing only takesstderr
into account and ignoresstdout
TF output.trace
, e.g.--terragrunt-log-level trace
.Full Changelog: gruntwork-io/terragrunt@v0.69.2...v0.69.3
v0.69.2
Compare Source
Updated CLI args, config attributes and blocks
--terragrunt-tf-logs-to-json
DEPRECATED: Use terragrunt-log-formatBreaking Changes
stdout
andstderr
is wrapped in JSON by default with--terragurnt-log-format json
flag. In other words, the previous behavior with the--terragrunt-json-log --terragrunt-tf-logs-to-json
flags is now equivalent to--terragrunt-log-format json
and the previous behavior with the--terragrunt-json-log
is now equivalent to--terragrunt-log-format json --terragrunt-forward-tf-stdout
.--terragurnt-log-format json
and--terragurnt-log-format key-value
formats:tfpath
->tf-path
workingDir
->working-dir
executedCommandArgs
->tf-command-args
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.69.1...v0.69.2
v0.69.1
Compare Source
New Feature
Using the OpenTofu/Terraform -detailed-exitcode flag with the run-all command results in an aggregate exit code being returned, rather than the exit code of any particular unit.
The algorithm for determining the aggregate exit code is as follows:
If any unit throws a 1, Terragrunt will throw a 1.
If any unit throws a 2, but nothing throws a 1, Terragrunt will throw a 2.
If nothing throws a non-zero, Terragrunt will throw a 0.
What's Changed
-detailed-exitcode
withrun-all
commands by @levkohimins in https://github.com/gruntwork-io/terragrunt/pull/3585Full Changelog: gruntwork-io/terragrunt@v0.69.0...v0.69.1
v0.69.0
Compare Source
TFLint update
The internal version of TFLint has been updated from
v0.47.0
tov0.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
v0.50.3
by @yhakbar in https://github.com/gruntwork-io/terragrunt/pull/3569Full Changelog: gruntwork-io/terragrunt@v0.68.17...v0.69.0
v0.68.17
Compare Source
Updated CLI args, config attributes and blocks
terraform
What's Changed
feature
andexclude
.Related links
Full Changelog: gruntwork-io/terragrunt@v0.68.16...v0.68.17
[
v0.68.16
](https://redirect.github.com/gruntConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.