diff --git a/checkov/common/runners/runner_registry.py b/checkov/common/runners/runner_registry.py index d4c87b5fb1..f7996394a5 100644 --- a/checkov/common/runners/runner_registry.py +++ b/checkov/common/runners/runner_registry.py @@ -532,7 +532,12 @@ def print_reports( report_json_output: "list[dict[str, Any]] | dict[str, Any]" = report_jsons if not report_jsons: - report_json_output = Report("").get_summary() + report_json_output = Report("").get_dict( + is_quiet=config.quiet, + url=url, + s3_setup_failed=bc_integration.s3_setup_failed, + support_path=bc_integration.support_repo_path + ) elif len(report_jsons) == 1: report_json_output = report_jsons[0]