Skip to content

Commit 311d262

Browse files
Update AWS title (#6338)
Update title for docs
1 parent 58c3de8 commit 311d262

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

  • packages/@okta

packages/@okta/vuepress-site/docs/guides/ai-agent-secure-aws-bedrock/main/index.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Secure AWS Bedrock Classic Agents with Okta
3-
excerpt: Learn how to secure AWS Bedrock Classic Agents with Okta
2+
title: Secure Amazon Bedrock Classic Agents with Okta
3+
excerpt: Learn how to secure Amazon Bedrock Classic Agents with Okta
44
layout: Guides
55
---
66
<ApiLifecycle access="ie" />
77

8-
This guide shows you how to secure an AWS Bedrock Classic Agent with Okta authentication by building a Python calling app that acts as a secure orchestrator. Your app performs Okta's two-step token exchange internally, and then invokes the Bedrock Classic Agent while securely passing the resulting access token and user identity as session attributes.
8+
This guide shows you how to secure an Amazon Bedrock Classic Agent with Okta authentication by building a Python calling app that acts as a secure orchestrator. Your app performs Okta's two-step token exchange internally, and then invokes the Bedrock Classic Agent while securely passing the resulting access token and user identity as session attributes.
99

1010
> **Note**: To enable AI agent token exchange, you must first subscribe to Okta for AI Agents. Contact your Okta account team to enable the feature.
1111
@@ -15,7 +15,7 @@ This guide shows you how to secure an AWS Bedrock Classic Agent with Okta authen
1515

1616
* Understand what a calling app must do to authenticate as a signed-in user with Okta.
1717
* Add a token exchange module to your app.
18-
* Set up an AWS Bedrock Classic Agent with an action group Lambda that can call Okta-protected APIs.
18+
* Set up an Amazon Bedrock Classic Agent with an action group Lambda that can call Okta-protected APIs.
1919
* Invoke the Bedrock Classic Agent with the user's Okta identity passed as session attributes.
2020
* Verify and test the end-to-end flow with a real Okta ID token.
2121

@@ -41,7 +41,7 @@ The integration has two parts:
4141

4242
This logic is identical for any agent. You add it once as a reusable module. See [Add Okta authentication to your agent](#add-okta-authentication-to-your-agent).
4343

44-
* Platform integration (AWS-specific). Your app invokes the Bedrock Classic Agent, passing the access token and the user's claims as session attributes. An action group Lambda function reads those session attributes and forwards the token as a bearer credential to an Okta-protected API. See [Invoke the Bedrock Classic Agent with the access token](#invoke-the-bedrock-classic-agent-with-the-access-token).
44+
* Platform integration (Amazon-specific). Your app invokes the Bedrock Classic Agent, passing the access token and the user's claims as session attributes. An action group Lambda function reads those session attributes and forwards the token as a bearer credential to an Okta-protected API. See [Invoke the Bedrock Classic Agent with the access token](#invoke-the-bedrock-classic-agent-with-the-access-token).
4545

4646
<!-- TODO: Replace this text-based diagram with an image.
4747
@@ -55,7 +55,7 @@ Okta authentication (token_exchange.py)
5555
Step 2: ID-JAG -> access_token (Custom AS: /oauth2/{custom-as-id}/v1/token)
5656
|
5757
v
58-
Platform integration (main.py, AWS Bedrock Classic Agent)
58+
Platform integration (main.py, Amazon Bedrock Classic Agent)
5959
invoke_agent(..., sessionAttributes={
6060
"okta_access_token": access_token,
6161
"user_name": ..., "user_email": ..., "user_sub": ...,
@@ -88,11 +88,11 @@ The token exchange depends on Okta objects that you configure once per org. Conf
8888

8989
### Collect your configuration values
9090

91-
Your app reads these values as environment variables. The token exchange module uses the first group. The second group is specific to AWS Bedrock.
91+
Your app reads these values as environment variables. The token exchange module uses the first group. The second group is specific to Amazon Bedrock.
9292

9393
<AiAgentOktaConfigValues/>
9494

95-
**AWS values (used by the platform integration):**
95+
**Amazon values (used by the platform integration):**
9696

9797
| Environment variable | Description | Where to find it |
9898
| --- | --- | --- |
@@ -108,7 +108,7 @@ The following example `token_exchange.py` module that you create here has no dep
108108

109109
<AiAgentTokenExchangeModule/>
110110

111-
## Set up your AWS Bedrock Classic Agent
111+
## Set up your Amazon Bedrock Classic Agent
112112

113113
### Enable model access
114114

@@ -294,7 +294,7 @@ def main():
294294
# attributes. It isn't used to make an authorization decision.
295295
user_claims = jwt.decode(id_token, options={"verify_signature": False})
296296
297-
# Platform integration (AWS Bedrock)
297+
# Platform integration (Amazon Bedrock)
298298
answer = invoke_bedrock_agent(prompt, user_claims, access_token)
299299
300300
print(json.dumps({
@@ -365,7 +365,7 @@ aws logs tail /aws/lambda/<action-group-function-name> \
365365
366366
## Troubleshooting
367367
368-
The following errors are specific to the AWS Bedrock integration:
368+
The following errors are specific to the Amazon Bedrock integration:
369369
370370
| Error | Root cause | Fix |
371371
| --- | --- | --- |

packages/@okta/vuepress-theme-prose/const/navbar.const.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ export const guides = [
580580
path: "/docs/guides/ai-agent-secure-third-party/main/",
581581
subLinks: [
582582
{
583-
title: "Secure AWS Bedrock Agents with Okta",
583+
title: "Secure Amazon Bedrock Agents with Okta",
584584
guideName: "ai-agent-secure-aws-bedrock"
585585
},
586586
{

0 commit comments

Comments
 (0)