We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07db0a4 commit 67a3232Copy full SHA for 67a3232
README.md
@@ -23,6 +23,7 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
23
|-----------------|-----|-----
24
|os_img_url|URL to the OS image|https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
25
|vm_count|Number of VMs| 1
26
+|index_start|From where the index start| 1
27
|vm_hostname_prefix|VM hostname prefix|vm
28
|memory|RAM in MB|1024
29
|hugepages|Use Hugepages|false
modules/virt-machine/variables.tf
@@ -10,7 +10,7 @@ variable "vm_count" {
10
11
variable "index_start" {
12
description = "From where the indexig start"
13
- defaut = 1
+ default = 1
14
}
15
16
variable "vm_hostname_prefix" {
0 commit comments