From de163a36cd7fa8c1e1b5b1a6f6bafe1717ed1588 Mon Sep 17 00:00:00 2001 From: yaaraverner Date: Tue, 3 Oct 2023 11:34:32 +0300 Subject: [PATCH] fix file name --- checkov/common/bridgecrew/wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkov/common/bridgecrew/wrapper.py b/checkov/common/bridgecrew/wrapper.py index de891fda757..3e7f070e612 100644 --- a/checkov/common/bridgecrew/wrapper.py +++ b/checkov/common/bridgecrew/wrapper.py @@ -200,7 +200,7 @@ def persist_resource_subgraph_maps( timeout: int ) -> None: def _upload_resource_subgraph_map(check_type: str, resource_subgraph_map: dict[str, str]) -> None: - s3_key = os.path.join(graphs_repo_object_key, check_type, "multi-graph/resource_subgraph_maps") + s3_key = os.path.join(graphs_repo_object_key, check_type, "multi-graph/resource_subgraph_map.json") try: _put_json_object(s3_client, resource_subgraph_map, bucket, s3_key) except Exception: