mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
24 lines
555 B
HCL
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"
|
|
}
|