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/bootstrap/variables.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 terraform/envs/bootstrap/variables.tf (limited to 'terraform/envs/bootstrap/variables.tf') diff --git a/terraform/envs/bootstrap/variables.tf b/terraform/envs/bootstrap/variables.tf new file mode 100644 index 0000000..220bed3 --- /dev/null +++ b/terraform/envs/bootstrap/variables.tf @@ -0,0 +1,15 @@ +variable "kubeconfig" { + type = string + default = "~/.kube/config" +} + +variable "kube_context" { + type = string + default = "kind-llm-local" +} + +variable "grafana_admin_password" { + type = string + default = "admin" + sensitive = true +} -- cgit