prole/deploy/opentofu/k3s/variables.tf

24 lines
555 B
HCL

variable "k3s_server_url" {
type = string
description = "K3s API server URL (e.g., https://pi.knoe.org:6443)"
}
variable "k3s_token" {
type = string
description = "K3s API token (unused when kubeconfig_path is set)"
sensitive = true
default = ""
}
variable "kubeconfig_path" {
type = string
description = "Path to a k3s kubeconfig file for API authentication"
default = ""
}
variable "namespace" {
type = string
description = "Target namespace for Knoe resources"
default = "default"
}