From d26133790a82e30955aeaa0327a30616788b9aee Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Mon, 3 Feb 2025 13:01:33 +0100 Subject: opentofu: main becomes docker-server, starting ubuntu and k8s cluster template --- opentofu/variables.tf | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'opentofu/variables.tf') diff --git a/opentofu/variables.tf b/opentofu/variables.tf index 426b192..bdbc17f 100644 --- a/opentofu/variables.tf +++ b/opentofu/variables.tf @@ -17,7 +17,12 @@ variable "proxmox_node" { type = string } -variable "packer_image_name" { +variable "debian_server_bookworm_packer_image_name" { + description = "Name of the Packer image to clone" + type = string +} + +variable "ubuntu_server_noble_packer_image_name" { description = "Name of the Packer image to clone" type = string } @@ -44,3 +49,15 @@ variable "ansible_playbook_path" { } +variable "k8s_worker_vm_name_prefix" { + description = "VM name prefix" + default = "k8s-worker" + type = string +} + +variable "k8s_worker_vm_count" { + description = "Number of servers" + default = 2 + type = string +} + -- cgit v1.2.3