prole/deploy/opentofu/k3s/variables.tf
chrisfu da2f6600ba feat: infrastructure and installer updates for k3s, OpenTofu, and prole-db
- Add k3s start/stop Ansible playbooks and roles.

- Implement OpenTofu initialization scripts and k8s manifests.

- Update ncurses installer with OpenTofu support and improved k3s integration.

- Add mode support (--mode) to etc/ initialization scripts.

- Update prole-db with recovery, barman objectstore, and SSH OpenBao support.

- Refine k8s manifests for OpenBao and prole-db.
2026-02-05 21:27:18 -08:00

17 lines
356 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"
sensitive = true
}
variable "namespace" {
type = string
description = "Target namespace for Prole resources"
default = "default"
}