@@ -247,6 +247,7 @@ func NewFlags(l log.Logger, opts *options.TerragruntOptions, prefix flags.Prefix
247247 EnvVars : tgPrefix .EnvVars (NoDependencyFetchOutputFromStateFlagName ),
248248 Destination : & opts .NoDependencyFetchOutputFromState ,
249249 Usage : "Disable the dependency-fetch-output-from-state feature even when the experiment is enabled." ,
250+ Hidden : true ,
250251 }),
251252
252253 flags .NewFlag (& cli.BoolFlag {
@@ -278,6 +279,7 @@ func NewFlags(l log.Logger, opts *options.TerragruntOptions, prefix flags.Prefix
278279 EnvVars : tgPrefix .EnvVars (DisableCommandValidationFlagName ),
279280 Destination : & opts .DisableCommandValidation ,
280281 Usage : "When this flag is set, Terragrunt will not validate the tofu/terraform command." ,
282+ Hidden : true ,
281283 Action : func (ctx * cli.Context , value bool ) error {
282284 if value {
283285 return opts .StrictControls .FilterByNames (controls .DisableCommandValidation ).Evaluate (ctx .Context )
@@ -408,6 +410,7 @@ func NewFlags(l log.Logger, opts *options.TerragruntOptions, prefix flags.Prefix
408410 EnvVars : tgPrefix .EnvVars (NoEngineFlagName ),
409411 Destination : & opts .NoEngine ,
410412 Usage : "Disable IaC engines even when the iac-engine experiment is enabled." ,
413+ Hidden : true ,
411414 }),
412415
413416 flags .NewFlag (& cli.BoolFlag {
0 commit comments