From 1e0f492b1d7f998cb7996e0f307c1e32a07cea36 Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Thu, 6 Feb 2025 22:13:14 +0100 Subject: opentofu: completely migrated k8-cluster.tf to modules Successfully built on proxmox --- opentofu/modules/k8s_worker/variables.tf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 opentofu/modules/k8s_worker/variables.tf (limited to 'opentofu/modules/k8s_worker/variables.tf') diff --git a/opentofu/modules/k8s_worker/variables.tf b/opentofu/modules/k8s_worker/variables.tf new file mode 100644 index 0000000..1328088 --- /dev/null +++ b/opentofu/modules/k8s_worker/variables.tf @@ -0,0 +1,26 @@ +variable "vm_count" {} +variable "name_prefix" {} +variable "desc" {} +variable "agent" {} +variable "target_node" {} +variable "tags" {} +variable "clone" {} +variable "full_clone" {} +variable "qemu_os" {} +variable "cores" {} +variable "sockets" {} +variable "cpu_type" {} +variable "memory" {} +variable "scsihw" {} +variable "bootdisk" {} +variable "cloudinit_storage" {} +variable "disk_storage" {} +variable "disk_size" {} +variable "iothread" {} +variable "replicate" {} +variable "network_id" {} +variable "network_model" {} +variable "network_bridge" {} +variable "ipconfig0" {} +variable "ciuser" {} +variable "sshkeys" {} -- cgit v1.2.3