Skip to content

Commit

Permalink
Added permissions to list image tags in image repository. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSick7 authored Feb 10, 2024
1 parent b2d3c43 commit b47411f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.4.11 (Feb 10, 2024)
* Added permissions to list image tags in image repository.

# 0.4.10 (Feb 06, 2024)
* Added support for metrics in capabilities.

Expand Down
4 changes: 3 additions & 1 deletion pusher.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ data "aws_iam_policy_document" "image_pusher" {
"ecr:PutImage",
"ecr:InitiateLayerUpload",
"ecr:UploadLayerPart",
"ecr:CompleteLayerUpload"
"ecr:CompleteLayerUpload",
"ecr:DescribeImages",
"ecr:ListImages",
]

resources = [aws_ecr_repository.this.arn]
Expand Down

0 comments on commit b47411f

Please sign in to comment.