From d3e770254de0bb301815ca87257c8b1a357d06c4 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 26 Apr 2026 21:02:47 +0800 Subject: hehe --- terraform/envs/agent/variables.tf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 terraform/envs/agent/variables.tf (limited to 'terraform/envs/agent/variables.tf') diff --git a/terraform/envs/agent/variables.tf b/terraform/envs/agent/variables.tf new file mode 100644 index 0000000..bf005b9 --- /dev/null +++ b/terraform/envs/agent/variables.tf @@ -0,0 +1,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" +} -- cgit