forked from aws-samples/sample-agentic-value-accelerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 1.17 KB
/
Copy path.env.example
File metadata and controls
31 lines (26 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# AWS Configuration
AWS_REGION=us-east-1
AWS_ACCESS_KEY_ID=your_access_key_here
AWS_SECRET_ACCESS_KEY=your_secret_key_here
# S3 Configuration
# The bucket name is auto-generated by Terraform with format: ava-<use_case_id>-data-<random>
# Get the actual value from Terraform output after deployment:
# cd iac/ec2 && terraform output s3_bucket_name
# cd iac/step_functions && terraform output s3_bucket_name
# cd iac/agentcore/infra && terraform output s3_bucket_name
S3_BUCKET_NAME=ava-kyc-data-xxxxx
# Bedrock Configuration
# Use inference profile ARN for Claude Opus 4.5 (replace <ACCOUNT_ID> with your AWS account ID)
BEDROCK_MODEL_ID=arn:aws:bedrock:us-east-1:<ACCOUNT_ID>:inference-profile/global.anthropic.claude-opus-4-5-20251101-v1:0
# Application Configuration
APP_ENV=dev
LOG_LEVEL=INFO
# Use Case Selection
# Which agentic use case to run from the registry
AGENT_NAME=kyc # current default
# Deployment Mode Configuration
# Options: fastapi | agentcore | lambda
# - fastapi: For EC2/ALB deployment or local development (default)
# - agentcore: For Amazon Bedrock AgentCore Runtime deployment
# - lambda: For AWS Step Functions with Lambda deployment
DEPLOYMENT_MODE=fastapi