Add agentcore-identity-cognito-multi-tenant-cdk pattern#3249
Open
sudhansuamz wants to merge 1 commit into
Open
Add agentcore-identity-cognito-multi-tenant-cdk pattern#3249sudhansuamz wants to merge 1 commit into
sudhansuamz wants to merge 1 commit into
Conversation
Add a serverless pattern demonstrating multi-tenant authentication and tenant isolation for an Amazon Bedrock AgentCore Runtime agent using Amazon Cognito as the OAuth 2.0 / JWT identity provider. AgentCore Identity validates the inbound Cognito JWT via a custom JWT authorizer. The agent resolves the caller's tenant from the validated cognito:groups claim (requiring exactly one tenant group) and exposes a no-argument DynamoDB tool bound to that tenant, giving prompt-injection- resistant isolation in the pool multi-tenancy model. Includes CDK infra (Cognito user pool with tenant groups, DynamoDB table, AgentCore Runtime with Authorization header forwarding, scoped IAM role), containerized Strands agent, test/seed scripts, README with a security section and IAM LeadingKeys hardening guidance, and example-pattern.json.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a new serverless pattern: Multi-tenant Amazon Bedrock AgentCore Runtime with Amazon Cognito (
agentcore-identity-cognito-multi-tenant-cdk, Python / AWS CDK).The pattern demonstrates multi-tenant authentication and tenant isolation for an AgentCore Runtime agent using Amazon Cognito as the OAuth 2.0 / JWT identity provider:
tenant-acme,tenant-globex) represent tenants. The agent resolves the caller's tenant from the validatedcognito:groupsclaim, requiring exactly one tenant group.What's included
test/scripts (token minting, data seeding, HTTPS invocation) and README + example-pattern.json.dynamodb:LeadingKeyswith per-tenant scoped credentials).Testing
Deployed to a personal AWS account (us-west-2) and validated end to end:
401 Invalid Signatureat the edge.403. User in zero or multiple tenant groups -> rejected, no data.Stack cleans up fully with
cdk destroy.