Last active
May 22, 2019 16:05
-
-
Save d-nishi/db2e4f67759edc7d6a9b1be5efa16695 to your computer and use it in GitHub Desktop.
CodeBuild Service Role
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [{ | |
"Effect": "Allow", | |
"Principal": { | |
"Service": "codebuild.amazonaws.com" | |
}, | |
"Action": [ | |
"sts:AssumeRole", | |
"ssm:GetParameters", | |
"logs:PutLogEvents", | |
"logs:CreateLogStream", | |
"logs:CreateLogGroup", | |
"ecr:UploadLayerPart", | |
"ecr:PutImage", | |
"ecr:InitiateLayerUpload", | |
"ecr:GetAuthorizationToken", | |
"ecr:CompleteLayerUpload", | |
"ecr:BatchCheckLayerAvailability" | |
], | |
"Resource": "*" | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment