summaryrefslogtreecommitdiff
path: root/terraform/envs/agent/variables.tf
blob: bf005b94edb194fcf77dc218a3dde74c92bdfcaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
variable "kubeconfig" {
  type    = string
  default = "~/.kube/config"
}

variable "kube_context" {
  type    = string
  default = "kind-llm-local"
}

variable "agent_source_path" {
  type        = string
  description = "Absolute path to agent/agent.py"
}