From 85c7c39f430b94a017700a9e4dc72ec48af5de46 Mon Sep 17 00:00:00 2001 From: deepak jain Date: Mon, 24 Jul 2023 18:05:23 +0530 Subject: [PATCH] INFRA-1960 | Deepak Jain | fixing iam role policy --- deployment_manifest.json | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/deployment_manifest.json b/deployment_manifest.json index 84601f72..4e402e43 100644 --- a/deployment_manifest.json +++ b/deployment_manifest.json @@ -164,20 +164,18 @@ ] }, { - "Sid": "", - "Effect": "Allow", - "Action": [ + "actions": [ "ecr:GetDownloadUrlForLayer", "ecr:GetAuthorizationToken", "ecr:BatchGetImage" ], - "Resource": "*" + "resource": "*" }, { - "Sid": "", - "Effect": "Allow", - "Action": "ecr:*", - "Resource": "arn:aws:ecr:*:*:repository/sandbox/*" + "actions": [ + "ecr:*" + ], + "resource": "arn:aws:ecr:*:*:repository/sandbox/*" } ] }