Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #35 from c-knowles/allow-private-ecr-from-controller
Browse files Browse the repository at this point in the history
Allow ECR pull from controller IAM role
  • Loading branch information
mumoshu authored Nov 7, 2016
2 parents d07ba81 + 145aebb commit 6255751
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions config/templates/stack-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,19 @@
"Action" : "kms:Decrypt",
"Effect" : "Allow",
"Resource" : "{{.KMSKeyARN}}"
},
{
"Action": [
"ecr:GetAuthorizationToken",
"ecr:BatchCheckLayerAvailability",
"ecr:GetDownloadUrlForLayer",
"ecr:GetRepositoryPolicy",
"ecr:DescribeRepositories",
"ecr:ListImages",
"ecr:BatchGetImage"
],
"Resource": "*",
"Effect": "Allow"
}
],
"Version": "2012-10-17"
Expand Down

0 comments on commit 6255751

Please sign in to comment.