Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save florianmartens/3a9ffc4200cb9ad33f64445461fe5c70 to your computer and use it in GitHub Desktop.
Save florianmartens/3a9ffc4200cb9ad33f64445461fe5c70 to your computer and use it in GitHub Desktop.
Codebuild inline policy for ecr
{
"Statement": [
### BEGIN ADDING STATEMENT HERE ###
{
"Action": [
"ecr:BatchCheckLayerAvailability",
"ecr:CompleteLayerUpload",
"ecr:GetAuthorizationToken",
"ecr:InitiateLayerUpload",
"ecr:PutImage",
"ecr:UploadLayerPart"
],
"Resource": "*",
"Effect": "Allow"
},
### END ADDING STATEMENT HERE ###
...
],
"Version": "2012-10-17"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment