From 825b3d4bcb28ddf9b0572d479b041b44e4c9e29b Mon Sep 17 00:00:00 2001 From: yaaraverner Date: Tue, 3 Oct 2023 11:43:18 +0300 Subject: [PATCH] fix path --- 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 3e7f070e612..4f25bd7234c 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_map.json") + s3_key = os.path.join(graphs_repo_object_key, check_type, "multi-graph/resource_subgraph_maps/resource_subgraph_map.json") try: _put_json_object(s3_client, resource_subgraph_map, bucket, s3_key) except Exception: