1 Answer
- Newest
- Most votes
- Most comments
0
Can you check if your IAM role tf-codebuild-role
has the correct trust policy (https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy)?
It should grant codebuild permission to assume it, i.e.
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sts:AssumeRole" ], "Principal": { "Service": [ "codebuild.amazonaws.com" ] } } ] }
answered 2 years ago
Relevant content
- asked 6 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago