forked from awslabs/amazon-bedrock-agentcore-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterraform.tfvars.example
More file actions
31 lines (25 loc) · 997 Bytes
/
terraform.tfvars.example
File metadata and controls
31 lines (25 loc) · 997 Bytes
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
# ============================================================================
# MCP Server on AgentCore Runtime - Example Configuration
# ============================================================================
# Copy this file to terraform.tfvars and customize
# Example: cp terraform.tfvars.example terraform.tfvars
# Agent Configuration
agent_name = "MCPServerAgent"
stack_name = "agentcore-mcp-server"
description = "MCP server runtime with JWT authentication"
# Network Configuration
network_mode = "PUBLIC" # PUBLIC or PRIVATE
# Container Configuration
ecr_repository_name = "mcp-server"
image_tag = "latest"
# AWS Configuration
aws_region = "us-west-2"
environment = "dev"
# Optional: Environment Variables for MCP Server
# environment_variables = {
# LOG_LEVEL = "INFO"
# }
# Notes:
# - JWT auth via Cognito (test user: testuser/MyPassword123!)
# - MCP server code in mcp-server-code/ directory
# - Three tools included: add_numbers, multiply_numbers, greet_user