Experiments
Terragrunt supports operating in a mode referred to as “Experiment Mode”.
Experiment Mode is a set of controls that can be enabled to opt in to experimental features before they’re stable. These features are subject to change and may be removed or altered at any time. They generally provide early access to new features or changes that are being considered for inclusion in future releases.
Those experiments will be documented here so that you know the following:
- What the experiment is.
- What the experiment does.
- How to provide feedback on the experiment.
- What criteria must be met for the experiment to be considered stable.
Sometimes, the criteria for an experiment to be considered stable is unknown, as there may not be a clear path to stabilization. In that case, this will be noted in the experiment documentation, and collaboration with the community will be encouraged to help determine the future of the experiment.
Controlling Experiment Mode
Section titled “Controlling Experiment Mode”The simplest way to enable experiment mode is to set the experiment-mode flag.
This will enable experiment mode for all Terragrunt commands, for all experiments (note that this isn’t generally recommended, unless you are following Terragrunt development closely and are prepared for the possibility of breaking changes).
terragrunt plan --experiment-modeYou can also use the environment variable, which can be more useful in CI/CD pipelines:
TG_EXPERIMENT_MODE='true' terragrunt planInstead of enabling experiment mode, you can also enable specific experiments by setting the experiment flag to a value that’s specific to an experiment. This can allow you to experiment with a specific unstable feature that you think might be useful to you.
terragrunt plan --experiment symlinksAgain, you can also use the environment variable, which can be more useful in CI/CD pipelines:
TG_EXPERIMENT='symlinks' terragrunt planYou can also enable multiple experiments at once.
terragrunt --experiment symlinks planIncluding the environment variable:
TG_EXPERIMENT='symlinks,stacks' terragrunt planActive Experiments
Section titled “Active Experiments”The following experiments are available:
symlinks
Section titled “symlinks”Support symlink resolution for Terragrunt units.
symlinks - What it does
Section titled “symlinks - What it does”By default, Terragrunt will ignore symlinks when determining which units it should run. By enabling this experiment, Terragrunt will resolve symlinks and add them to the list of units being run.
symlinks - How to provide feedback
Section titled “symlinks - How to provide feedback”Provide your feedback on the Experiment: Symlinks discussion.
symlinks - Criteria for stabilization
Section titled “symlinks - Criteria for stabilization”To stabilize this feature, the following need to be resolved, at a minimum:
- Ensure that symlink support continues to work for users referencing symlinks in flags. See #3622.
- Add integration tests for all filesystem flags to confirm support with symlinks (or document the fact that they cannot be supported).
- Ensure that MacOS integration tests still work. See #3616.
- Add integration tests for MacOS in CI.
Support for Terragrunt Content Addressable Storage (CAS).
cas - What it does
Section titled “cas - What it does”Allow Terragrunt to store and retrieve Git repositories from a Content Addressable Storage (CAS) system.
The CAS is used to speed up both catalog cloning and OpenTofu/Terraform source cloning by avoiding redundant downloads of Git repositories.
cas - How to provide feedback
Section titled “cas - How to provide feedback”Share your experience with this feature in the CAS Feedback GitHub Discussion. Feedback is crucial for ensuring the feature meets real-world use cases. Please include:
- Any bugs or issues encountered (including logs or stack traces if possible).
- Suggestions for additional improvements or enhancements.
cas - Criteria for stabilization
Section titled “cas - Criteria for stabilization”To transition the cas feature to a stable release, the following must be addressed:
- Add support for storing and retrieving catalog repositories from the CAS.
- Add support for storing and retrieving OpenTofu/Terraform modules from the CAS.
- Add support for storing and retrieving Unit/Stack configurations from the CAS.
filter-flag
Section titled “filter-flag”Support for sophisticated unit and stack filtering using the --filter flag.
filter-flag - What it does
Section titled “filter-flag - What it does”The --filter flag provides a sophisticated querying syntax for targeting units and stacks in Terragrunt commands. This unified approach replaces the need for multiple queue control flags and offers powerful filtering capabilities.
Current Support Status:
- ✅ Available in
find,list, andruncommands
Supported Filtering Types:
- Name-based filtering: Target units/stacks by their directory name (exact match or glob patterns)
- Path-based filtering: Target units/stacks by their file system path (relative, absolute, or glob patterns)
- Attribute-based filtering: Target units by configuration attributes:
type=unitortype=stack- Filter by component typeexternal=trueorexternal=false- Filter by whether the unit/stack is an external dependency (outside the current working directory)name=pattern- Filter by name using glob patterns
- Negation filters: Exclude units using the
!prefix - Filter intersection: Combine filters using the
|operator for results pruning - Multiple filters: Specify multiple
--filterflags to union results
Not Yet Implemented:
- Git-based filtering (
[ref...ref]syntax) - Dependency/dependent traversal (
...syntax)
filter-flag - How to provide feedback
Section titled “filter-flag - How to provide feedback”Provide your feedback on the Filter Flag RFC GitHub issue.
filter-flag - Criteria for stabilization
Section titled “filter-flag - Criteria for stabilization”To transition the filter-flag feature to a stable release, the following must be addressed, at a minimum:
- Add support for name-based filtering
- Add support for path-based filtering (relative, absolute, glob)
- Add support for attribute-based filtering (type, external, name)
- Add support for negation filters (!)
- Add support for filter intersection (|)
- Add support for multiple filters (union/OR semantics)
- Integrate with the
findcommand - Integrate with the
listcommand - Integrate with the
runcommand - Add support for git-based filtering ([ref…ref] syntax)
- Add support for dependency/dependent traversal (… syntax)
- Add support for
--filters-fileflag - Add support for
--filter-allow-destroyflag - Add support for
--filter-affectedshorthand - Comprehensive integration testing across all commands
- Deprecate legacy queue control flags (queue-exclude-dir, queue-include-dir, etc.)
Future Deprecations:
When this experiment stabilizes, the following queue control flags will be deprecated in favor of the unified --filter flag:
--queue-exclude-dir--queue-excludes-file--queue-exclude-external--queue-include-dir--queue-include-external--queue-include-units-including--queue-strict-include
The current plan is to continue to support the flags as aliases for particular --filter patterns.
Completed Experiments
Section titled “Completed Experiments”cli-redesign
Section titled “cli-redesign”Support for the new Terragrunt CLI design.
cli-redesign - What it does
Section titled “cli-redesign - What it does”Enabled features from the CLI Redesign RFC.
This experiment flag is no longer needed, as the CLI Redesign is now the default.
cli-redesign - How to provide feedback
Section titled “cli-redesign - How to provide feedback”Now that the CLI Redesign experiment is complete, please provide feedback in the form of standard GitHub issues.
cli-redesign - Criteria for stabilization
Section titled “cli-redesign - Criteria for stabilization”To transition cli-redesign features to a stable the following have been completed:
- Add support for
runcommand.- Add support for basic usage of the
runcommand (e.g.,terragrunt run plan,terragrunt run -- plan -no-color). - Add support for the
--allflag. - Add support for the
--graphflag.
- Add support for basic usage of the
- Add support for
execcommand. - Rename legacy
--terragrunt-prefixed flags so that they no longer need the prefix. - Add the
hclcommand, replacing commands likehclfmt,hclvalidateandvalidate-inputs. - Add OpenTofu commands as explicit shortcuts in the CLI instead of forwarding all unknown commands to OpenTofu/Terraform.
- Add support for the
backendcommand. - Add support for the
rendercommand. - Add support for the
infocommand. - Add support for the
dagcommand. - Add support for the
findcommand.- Add support for
findwithout flags. - Add support for
findwith colorful output. - Add support for
findwith--format=jsonflag. - Add support for
findwith stdout redirection detection. - Add support for
findwith--hiddenflag. - Add support for
findwith--sort=alphaflag. - Add support for
findwith--sort=dagflag. - Add support for
findwith theexcludeblock used to exclude units from the search. - Add integration with
symlinksexperiment to support finding units/stacks via symlinks. - Add handling of broken configurations or configurations requiring authentication.
- Add integration test for
findwith--sort=dagflag on all the fixtures in thetest/fixturesdirectory.
- Add support for
- Add support for the
listcommand.- Add support for
listwithout flags. - Add support for
listwith colorful output. - Add support for
listwith--format=treeflag. - Add support for
listwith--format=longflag. - Add support for
listwith stdout redirection detection. - Add support for
listwith--hiddenflag. - Add support for
listwith--sort=alphaflag. - Add support for
listwith--sort=dagflag. - Add support for
listwith--group-by=fsflag. - Add support for
listwith--group-by=dagflag. - Add support for
listwith theexcludeblock used to exclude units from the search. - Add integration with
symlinksexperiment to support listing units/stacks via symlinks. - Add handling of broken configurations or configurations requiring authentication.
- Add integration test for
listwith--sort=dagflag on all the fixtures in thetest/fixturesdirectory.
- Add support for
stacks
Section titled “stacks”Support for Terragrunt stacks.
What it does
Section titled “What it does”Enable stack command to manage Terragrunt stacks.
stacks - Criteria for stabilization
Section titled “stacks - Criteria for stabilization”To transition the stacks feature to a stable release, the following must be addressed:
- Add support for
stack run *command - Add support for
stack outputcommands to extend stack-level operations. - Integration testing for recursive stack handling across typical workflows, ensuring smooth transitions during
plan,apply, anddestroyoperations. - Confirm compatibility with parallelism flags (e.g.,
--parallel), especially for stacks with dependencies. - Ensure that error handling and failure recovery strategies work as intended across large and nested stacks.
runner-pool
Section titled “runner-pool”Proposes replacing Terragrunt’s group-based execution with a dynamic runner pool that schedules Units as soon as dependencies are resolved. This improves efficiency, reduces bottlenecks, and limits the impact of individual failures.
runner-pool - What it does
Section titled “runner-pool - What it does”Allow usage of experimental runner pool implementation for units execution.
runner-pool - How to provide feedback
Section titled “runner-pool - How to provide feedback”Provide your feedback on the Runner Pool.
runner-pool - Criteria for stabilization
Section titled “runner-pool - Criteria for stabilization”To transition the runner-pool feature to a stable release, the following must be addressed:
- Use new discovery and queue packages to discover units.
- Add support for including/excluding external units in the discovery process.
- Add runner pool implementation to execute discovered units.
- Add integration tests to track that the runner pool works in the same way as the current implementation.
- Add performance tests to track that the runner pool implementation is faster than the current implementation.
- Add support for fail fast behavior in the runner pool.
- Improve the UI to queue to apply.
- Add OpenTelemetry support to the runner pool.
report
Section titled “report”Support for Terragrunt Run Reports and Summaries.
report - What it does
Section titled “report - What it does”Allows generation of run reports and summary displays. This experiment flag is no longer needed, as the report feature is now stable and available by default.
report - How to provide feedback
Section titled “report - How to provide feedback”Now that the report experiment is complete, please provide feedback in the form of standard GitHub issues.
report - Criteria for stabilization
Section titled “report - Criteria for stabilization”To transition the report feature to stable, the following have been completed:
- Add support for generating reports (in CSV format by default).
- Add support for displaying summaries of runs.
- Add ability to disable summary display.
- Add support for generating reports in JSON format.
- Add comprehensive integration tests for the
reportexperiment. - Finalize the design of run summaries and reports.
auto-provider-cache-dir
Section titled “auto-provider-cache-dir”Enable native OpenTofu provider caching by setting TF_PLUGIN_CACHE_DIR instead of using Terragrunt’s internal provider cache server.
auto-provider-cache-dir - What it does
Section titled “auto-provider-cache-dir - What it does”This experiment automatically configures OpenTofu to use its built-in provider caching mechanism by setting the TF_PLUGIN_CACHE_DIR environment variable. This approach leverages OpenTofu’s native provider caching capabilities, which are more robust for concurrent operations in OpenTofu 1.10+.
This experiment flag is no longer needed, as the auto-provider-cache-dir feature is now enabled by default when using OpenTofu >= 1.10.
Requirements:
- OpenTofu version >= 1.10 is required
- Only works when using OpenTofu (not Terraform)
Disabling the feature:
You can disable the auto-provider-cache-dir feature using the --no-auto-provider-cache-dir flag:
terragrunt run --all apply --no-auto-provider-cache-dirauto-provider-cache-dir - How to provide feedback
Section titled “auto-provider-cache-dir - How to provide feedback”Now that the auto-provider-cache-dir experiment is complete, please provide feedback in the form of standard GitHub issues.
auto-provider-cache-dir - Criteria for stabilization
Section titled “auto-provider-cache-dir - Criteria for stabilization”To transition the auto-provider-cache-dir feature to stable, the following have been completed:
- Comprehensive testing to confirm the safety of concurrent runs using the same provider cache directory.
- Performance comparison with the existing provider cache server approach.
- Documentation and examples of best practices for usage.
- Community feedback on real-world usage and any edge cases discovered.