Answers for "aws cli command to set the policy to ECR"

0

aws cli command to set the policy to ECR

{
    "Version" : "2008-10-17",
    "Statement" : [
        {
            "Sid" : "allow public pull",
            "Effect" : "Allow",
            "Principal" : "*",
            "Action" : [
                "ecr:BatchCheckLayerAvailability",
                "ecr:BatchGetImage",
                "ecr:GetDownloadUrlForLayer"
            ]
        }
    ]
}
Posted by: Guest on April-20-2021

Browse Popular Code Answers by Language