Skip to content

Commit 2981dfc

Browse files
authored
fix: update recommended IAM policy to include ecr:BatchGet* (#72)
Issue #, if available: aws-controllers-k8s/community#1641 Description of changes: Update recommended IAM policy for lambda controller to allow ecr:BatchGet* By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 2771d6a commit 2981dfc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

config/iam/recommended-inline-policy

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"Action": [
77
"lambda:*",
88
"s3:Get*",
9-
"ecr:Get*"
9+
"ecr:Get*",
10+
"ecr:BatchGet*"
1011
],
1112
"Resource": "*"
1213
},
@@ -21,4 +22,4 @@
2122
"Resource": "*"
2223
}
2324
]
24-
}
25+
}

0 commit comments

Comments
 (0)