Skip to content

Commit

Permalink
udpate scp
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 9, 2026
1 parent 978361f commit 0b373fc
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions aws/documentation/services/bedrock/scp.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,33 +43,27 @@ This policy denies all Bedrock model invocations *unless* the resource matches y
"Version": "2012-10-17",
"Statement": [
{
"Sid": "RestrictBedrockModelsAndProfiles",
"Sid": "DenyUnapprovedFoundationModels",
"Effect": "Deny",
"Action": [
"bedrock:InvokeModel",
"bedrock:InvokeModelWithResponseStream",
"bedrock:InvokeModel",
"bedrock:CreateModelInvocationJob",
"bedrock:UseInferenceProfile"
"bedrock:ConverseStream",
"bedrock:Converse"
],
"NotResource": [
"arn:*:bedrock:*:*:foundation-model/amazon.titan*",
"arn:*:bedrock:*:*:foundation-model/anthropic.claude-4-5-sonnet*",
"arn:*:bedrock:*:*:foundation-model/anthropic.claude-3-7-sonnet*",
"arn:*:bedrock:*:*:foundation-model/anthropic.claude-3-5-sonnet-20240620*",
"arn:*:bedrock:*:*:foundation-model/anthropic.claude-3-haiku*",
"arn:*:bedrock:*:*:foundation-model/meta.llama3-8b*",
"arn:*:bedrock:*:*:foundation-model/meta.llama3-70b*",
"arn:*:bedrock:*:*:inference-profile/*anthropic.claude-4-5-sonnet*",
"arn:*:bedrock:*:*:inference-profile/*anthropic.claude-3-7-sonnet*",
"arn:*:bedrock:*:*:inference-profile/*anthropic.claude-3-5-sonnet-20240620*",
"arn:*:bedrock:*:*:inference-profile/*anthropic.claude-3-haiku*",
"arn:*:bedrock:*:*:inference-profile/*meta.llama3*",
"arn:*:bedrock:*:*:provisioned-model/*"
"arn:*:bedrock:*::foundation-model/meta.llama3-8b*",
"arn:*:bedrock:*::foundation-model/meta.llama3-70b*",
"arn:*:bedrock:*::foundation-model/anthropic.claude-4-5-sonnet*",
"arn:*:bedrock:*::foundation-model/anthropic.claude-3-haiku*",
"arn:*:bedrock:*::foundation-model/anthropic.claude-3-7-sonnet*",
"arn:*:bedrock:*::foundation-model/anthropic.claude-3-5-sonnet*",
"arn:*:bedrock:*::foundation-model/amazon.titan*"
]
}
]
}

```

#### 1. Managing Inference Profiles
Expand Down Expand Up @@ -111,3 +105,5 @@ GovCloud handles Bedrock slightly differently than Commercial regions:

* 1.0.0 -- 2026-01-07
- develop guide and document
* 1.0.1 -- 2026-01-09
- update SCP to one that partially works (from lab testing)

0 comments on commit 0b373fc

Please sign in to comment.