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
27 lines (22 loc) · 863 Bytes
/
terraform.tfvars.example
File metadata and controls
27 lines (22 loc) · 863 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
# ============================================================================
# Basic AgentCore Runtime - Example Configuration
# ============================================================================
# Copy this file to terraform.tfvars and customize the values
# Example: cp terraform.tfvars.example terraform.tfvars
# Agent Configuration
agent_name = "BasicAgent"
stack_name = "agentcore-basic"
description = "Basic agent runtime without memory, code interpreter, or browser"
# Network Configuration
network_mode = "PUBLIC" # Options: PUBLIC, PRIVATE
# Container Configuration
ecr_repository_name = "basic-agent"
image_tag = "latest"
# AWS Configuration
aws_region = "us-west-2"
environment = "dev"
# Optional: Environment Variables for the Agent Runtime
# environment_variables = {
# LOG_LEVEL = "INFO"
# CUSTOM_VAR = "value"
# }