Applies to:
- Plan:
- Deployment:
Summary
AWS Bedrock Claude model requests fail with authorization errors like:bedrock:InvokeModel and bedrock:InvokeModelWithResponseStream permissions for the target regions.
User: arn:aws:iam::XXXXXXXXXXXX:user/service-accounts/braintrust/braintrust-XXXXXXX is not authorized to perform: bedrock:InvokeModelWithResponseStream on resource: arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-haiku-4-5-20251001-v1:0 because no identity-based policy allows the bedrock:InvokeModelWithResponseStream action
bedrock:InvokeModel and bedrock:InvokeModelWithResponseStream permissions for the target regions.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "BedrockInvokeFoundationModelsMultiRegion",
"Effect": "Allow",
"Action": [
"bedrock:InvokeModel",
"bedrock:InvokeModelWithResponseStream"
],
"Resource": "arn:aws:bedrock:*::foundation-model/*"
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "BedrockInvokeFoundationModelsTwoRegions",
"Effect": "Allow",
"Action": [
"bedrock:InvokeModel",
"bedrock:InvokeModelWithResponseStream"
],
"Resource": [
"arn:aws:bedrock:us-east-1::foundation-model/*",
"arn:aws:bedrock:us-west-2::foundation-model/*"
]
}
]
}
Was this page helpful?