Skip to content

Instantly share code, notes, and snippets.

@kimisme9386
Created February 8, 2026 04:04
Show Gist options
  • Select an option

  • Save kimisme9386/ec7086c662813140b61129469df3448f to your computer and use it in GitHub Desktop.

Select an option

Save kimisme9386/ec7086c662813140b61129469df3448f to your computer and use it in GitHub Desktop.
AWS ogranization SCP configuraiton for openclaw
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "DenyBedrockOutsideUsEast1",
"Effect": "Deny",
"Action": "bedrock:*",
"Resource": "*",
"Condition": {
"StringNotEquals": {
"aws:RequestedRegion": "us-east-1"
}
}
},
{
"Sid": "DenyInvokeOtherBedrockModels",
"Effect": "Deny",
"Action": [
"bedrock:InvokeModel",
"bedrock:InvokeModelWithResponseStream"
],
"NotResource": "arn:aws:bedrock:*::foundation-model/openai.gpt-oss-120b-1:0"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment