diff options
Diffstat (limited to 'opentofu/variables.tf')
| -rw-r--r-- | opentofu/variables.tf | 19 | 
1 files changed, 18 insertions, 1 deletions
| 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 +} + | 
