# =============================================================================
# PROMETHEUS-MCP CONFIGURATION
# =============================================================================
#
# SETUP:
# 1. Copy this file: cp prometheus-mcp.auto.tfvars.example prometheus-mcp.auto.tfvars
# 2. Fill in your AMP workspace ID below
# 3. Run: terraform apply
#
# The .auto.tfvars extension means Terraform automatically loads this file.
# No need to pass -var-file or -var flags!
#
# =============================================================================
# -----------------------------------------------------------------------------
# REQUIRED - You must set these!
# -----------------------------------------------------------------------------
# AWS region where your AMP workspace is located
# Usually the same as your EKS cluster region
aws_region = "us-west-1"
# Your AWS Managed Prometheus workspace ID
# Get it with: aws amp list-workspaces --query "workspaces[].workspaceId" --output text
amp_workspace_id = "ws-REPLACE-WITH-YOUR-WORKSPACE-ID"
# -----------------------------------------------------------------------------
# OPTIONAL - Uncomment and modify if needed
# -----------------------------------------------------------------------------
# Container image (default: ghcr.io/deeptrace/prometheus-mcp:0.1.0)
# prometheus_mcp_image = "ghcr.io/deeptrace/prometheus-mcp:0.1.0"
# Number of replicas (default: 2)
# prometheus_mcp_replicas = 2
# Node selector - must match your node group labels (default: { workload = "prometheus-mcp" })
# prometheus_mcp_node_selector = { workload = "prometheus-mcp" }