What is the permission for a IAM user to create a ECR repository?

8,818

Solution 1

I got this error some time back, notice that you have given "containerservicefullaccess" and not "ContainerRegistryFullAccess"

Solution 2

The required permission is AmazonEC2ContainerRegistryFullAccess

Solution 3

ECR has its own IAM policies, so you need to give your user additional permissions for it Here you can find documentation about ECR policies

Share:
8,818

Related videos on Youtube

Jason Lee
Author by

Jason Lee

Updated on September 18, 2022

Comments

  • Jason Lee
    Jason Lee over 1 year

    My IAM user is getting this error

    User: arn:aws:iam::123456789:user/admin is not authorized to perform: 
    ecr:CreateRepository on resource: *
    

    when I try to create a repository.

    enter image description here

    I have already grant AmazonEC2ContainerServiceFullAccess to the group this user belongs to. I search for repository in 'attach policy' but there is no match. How can I grant the permission to this user?