diff --git a/pkg/terraform/tf.go b/pkg/terraform/tf.go index ccf268c76..3f320c62f 100644 --- a/pkg/terraform/tf.go +++ b/pkg/terraform/tf.go @@ -35,7 +35,7 @@ func (terragrunt Terragrunt) Plan() (bool, string, string, error) { } func (terragrunt Terragrunt) runTerragruntCommand(command string) (string, string, error) { - cmd := exec.Command("terragrunt", command, "--terragrunt-working-dir", terragrunt.WorkingDir) + cmd := exec.Command("terragrunt", command, "--terragrunt-working-dir", terragrunt.WorkingDir, "--terragrunt-non-interactive") env := os.Environ() env = append(env, "TF_CLI_ARGS=-no-color") env = append(env, "TF_IN_AUTOMATION=true")