variable "libvirt_provider_uri" { type = string description = "Libvirt provider's URI" default = "qemu:///system" } variable "vm_ssh_private_key" { type = string description = "Location of SSH private key for VMs" } variable "vm_image_source" { type = string description = "Image source, which can be path on host's filesystem or URL." } variable "control_plane_count" { type = number description = "The amount of initial control-plane nodes" default = 2 } variable "node_count" { type = number description = "The amount of initial worker nodes" default = 2 } variable "load_balancer_count" { type = number description = "The amount of initial load balancers" default = 1 }