Created
May 14, 2022 16:58
-
-
Save florianmartens/3a9ffc4200cb9ad33f64445461fe5c70 to your computer and use it in GitHub Desktop.
Codebuild inline policy for ecr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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