summaryrefslogtreecommitdiff
path: root/terraform/envs/bootstrap/variables.tf
diff options
context:
space:
mode:
Diffstat (limited to 'terraform/envs/bootstrap/variables.tf')
-rw-r--r--terraform/envs/bootstrap/variables.tf15
1 files changed, 15 insertions, 0 deletions
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 @@
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 "grafana_admin_password" {
12 type = string
13 default = "admin"
14 sensitive = true
15}