Sharing ECR Repos
Granting EKS and ECS Access to Your ECR Repository
Allowing Pull (Read) Access
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPull",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::ACCOUNT_ID:root"
},
"Action": [
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage",
"ecr:BatchCheckLayerAvailability"
]
}
]
}Allowing Pull and Push (Read and Write) Access
Granting Lambda Access
Last updated
Was this helpful?

