Created
February 8, 2026 04:04
-
-
Save kimisme9386/ec7086c662813140b61129469df3448f to your computer and use it in GitHub Desktop.
AWS ogranization SCP configuraiton for openclaw
This file contains hidden or 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": [ | |
| { | |
| "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