Securing Amazon Bedrock | S02 E11 | Build On Generative AI
Making sure all that data going in and out of Bedrock does not go to the internet.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"bedrock:InvokeModel"
],
"Resource": [
"arn:aws:bedrock:*::foundation-model/anthropic.claude-instant-v1"
],
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::<accountid>:role/GenAIStack-Bedrock"
}
}
]
}
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.