summaryrefslogtreecommitdiff
path: root/terraform/envs/agent/variables.tf
diff options
context:
space:
mode:
Diffstat (limited to 'terraform/envs/agent/variables.tf')
-rw-r--r--terraform/envs/agent/variables.tf14
1 files changed, 14 insertions, 0 deletions
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 @@
1variable "kubeconfig" {
2 type = string
3 default = "~/.kube/config"
4}
5
6variable "kube_context" {
7 type = string
8 default = "kind-llm-local"
9}
10
11variable "agent_source_path" {
12 type = string
13 description = "Absolute path to agent/agent.py"
14}