mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* Add multi-region support for SRE-Agent - Add AWS region configuration parameter to agent_config.yaml - Update gateway main.py to validate region matches endpoint URL - Modify SRE agent to read region from config and pass through function chain - Update memory client and LLM creation to use configurable region - Fixes hardcoded us-east-1 region dependencies Closes #245 * Move architecture file to docs/ and improve setup instructions - Move sre_agent_architecture.md to docs/ folder for better organization - Update graph export code to generate architecture file in docs/ folder - Add automatic docs directory creation if it doesn't exist - Improve README setup instructions: - Fix .env.example copy path to use sre_agent folder - Add note that Amazon Bedrock users don't need to modify .env - Add START_API_BACKEND variable to conditionally start backend servers - Useful for workshop environments where backends are already running * Improve gateway configuration documentation and setup instructions - Update config.yaml.example to use REGION placeholder instead of hardcoded us-east-1 - Add gateway configuration step to README setup instructions - Document .cognito_config file in auth.md automated setup section - Remove duplicate credential_provider_name from config.yaml.example - Update configuration.md to include .cognito_config in files overview - Add clear instructions to copy and edit gateway/config.yaml before creating gateway * Improve IAM role guidance and region handling - Add clear guidance about IAM role options in gateway/config.yaml.example - Explain that testing can use current EC2/notebook role - Recommend dedicated role for production deployments - Add aws sts get-caller-identity command to help users find their role - Update deployment scripts to use AWS_REGION env var as fallback - Scripts now follow: CLI arg -> AWS_REGION env var -> us-east-1 default * Remove unnecessary individual Cognito ID files - Remove creation of .cognito_user_pool_id file - Remove creation of .cognito_client_id file - Keep only .cognito_config as the single source of truth - Simplifies configuration management * Implement region fallback logic for SRE Agent - Added region fallback chain: agent_config.yaml -> AWS_REGION env -> us-east-1 - Modified agent_config.yaml to comment out region parameter to enable fallback - Updated multi_agent_langgraph.py with comprehensive fallback implementation - Added logging to show which region source is being used - Ensures flexible region configuration without breaking existing deployments - Maintains backward compatibility while adding multi-region support
37 lines
1.7 KiB
Plaintext
37 lines
1.7 KiB
Plaintext
# AgentCore Gateway Configuration Template
|
|
# Copy this file to config.yaml and update with your environment-specific settings
|
|
|
|
# AWS Configuration
|
|
account_id: "YOUR_ACCOUNT_ID"
|
|
region: "REGION"
|
|
# IAM role used to create and manage the gateway
|
|
# This role must have BedrockAgentCoreFullAccess policy and trust policy for bedrock-agentcore.amazonaws.com
|
|
# For testing: This can be the role of your current EC2 instance or notebook
|
|
# For production: Use a dedicated role for the gateway (recommended)
|
|
# To find your current role, run: aws sts get-caller-identity
|
|
role_name: "YOUR_ROLE_NAME"
|
|
endpoint_url: "https://bedrock-agentcore-control.REGION.amazonaws.com"
|
|
credential_provider_endpoint_url: "https://REGION.prod.agent-credential-provider.cognito.aws.dev"
|
|
|
|
# Cognito Configuration
|
|
# These parameters are automatically generated by running deployment/setup_cognito.sh
|
|
# The script prints out the values and saves them to deployment/.cognito_config file
|
|
user_pool_id: "YOUR_USER_POOL_ID"
|
|
client_id: "YOUR_CLIENT_ID"
|
|
|
|
# S3 Configuration
|
|
s3_bucket: "your-agentcore-schemas-bucket"
|
|
s3_path_prefix: "devops-multiagent-demo" # Path prefix for OpenAPI schema files
|
|
|
|
# Provider Configuration
|
|
# Name for the API key credential provider used by backend services for authentication
|
|
credential_provider_name: "sre-agent-api-key-credential-provider"
|
|
# This ARN is automatically generated by create_gateway.sh when it runs create_credentials_provider.py
|
|
provider_arn: "arn:aws:bedrock-agentcore:REGION:ACCOUNT_ID:token-vault/default/apikeycredentialprovider/sre-agent-api-key-credential-provider"
|
|
|
|
# Gateway Configuration
|
|
gateway_name: "MyAgentCoreGateway"
|
|
gateway_description: "AgentCore Gateway for API Integration"
|
|
|
|
# Target Configuration
|
|
target_description: "S3 target for OpenAPI schema" |