Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

AWS Logo
Menu

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.

AWS Admin
Amazon Employee
Published Oct 30, 2023
Last Modified Jun 25, 2024
Image not found
All this and more, if you follow the blog post and watch the live stream
Today, Darko is joined by Ram, as we look into the way to secure you Amazon Bedrock workloads. More specifically we discuss and demonstrate how to setup AWS PrivateLink to securely communicate with the Amazon Bedrock Service. Ram shows us how to configure the VPC, Permissions and anything else needed to have your Lambda functions communicate with Amazon Bedrock via the AWS PrivateLink.
If you want to follow along, there is a Blog Post available for your reading pleasure! 🥳
The thing that really stood out to me is the ability to setup Endpoint policies that only allow invoking a specific model 👏
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"
}
}
]
}
To learn more, and see how we set all this up. Check out the recording here:
To view this Twitch stream, please accept cookies.

Links from today's episode

Reach out to the hosts and guests:

Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.

Comments

Log in to comment