Skip to content
Discussion options

You must be logged in to vote

Sorry. I'm idlot, this probled solved to iam resource.

I set ECR arn like this

{
    "Statement": [
        {
                " Action": ["ecr:*"],
                "Effect": "Allow",
                "Resource": ["arn.aws.ecr.{region}.{account-id}.repository/*"] // this is problem
        }
    ]
}

I fix like this.

{
    "Statement": [
        {
                " Action": ["ecr:*"],
                "Effect": "Allow",
                "Resource": ["*"]
        }
    ]
}

I don't know why don't working I set resource.

But issue solved.

Thank U

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@im-konge
Comment options

Comment options

You must be logged in to vote
1 reply
@im-konge
Comment options

Answer selected by comstering
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants