From d326232271e3f4fb708cff06d48faf647a10ab4a Mon Sep 17 00:00:00 2001 From: AliPiccioniQC <125677204+AliPiccioniQC@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:16:32 +0200 Subject: [PATCH] Update .pre-commit-hooks.yaml Add flags `--download-external-modules true` and `--quiet` to checkov. > --download-external-modules > > Download external terraform modules from public git repositories and terraform registry > > -- quiet > > For the CLI output, display only failed checks. Also disables progress bars. > > https://www.checkov.io/2.Basics/CLI%20Command%20Reference.html --- .pre-commit-hooks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 5ba9a8e..e86d429 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,7 +1,7 @@ - id: checkov-conda name: checkov-conda description: 'This hook runs checkov.' - entry: checkov -d . + entry: checkov -d . --download-external-modules true --quiet language: conda pass_filenames: false always_run: false