prole/deploy/opentofu/k3s/variables.tf
chrisfu 1573bb59c2 Add prole.spec and extend OpenTofu k3s configuration
- Include new `prole.spec` for build configurations and dependencies.
- Add Terraform state handling for OpenTofu in `k3s` cluster.
- Provision multiple Kubernetes resources in `prole-db` namespace: namespace, services, ConfigMaps, StatefulSets, Ingress rules, and PersistentVolumes.
- Integrate deployment and configuration enhancements for `garage`, `prole`, and related components.
2026-02-24 21:47:02 -08:00

24 lines
557 B
HCL

variable "k3s_server_url" {
type = string
description = "K3s API server URL (e.g., https://pi.prole.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 Prole resources"
default = "default"
}