AWS ECR GetAuthorizationToken

前端 未结 8 747
星月不相逢
星月不相逢 2021-02-06 20:33

I\'ve tried to follow AWS instructions on setting ECR authorization to my user by giving the AmazonEC2ContainerRegistryFullAccess policy to my user.

However

8条回答
  •  迷失自我
    2021-02-06 21:22

    Just as it appears in the error description, I have to allow action "GetAuthorizationToken" in my policy.

        {
            "Sid": "VisualEditor2",
            "Effect": "Allow",
            "Action": "ecr:GetAuthorizationToken",
            "Resource": "*"
        }
    

    Note: This is not my full policy but a subsection of Statement.

提交回复
热议问题