Skip to content

Commit 67a3232

Browse files
Fix var
1 parent 07db0a4 commit 67a3232

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
2323
|-----------------|-----|-----
2424
|os_img_url|URL to the OS image|https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
2525
|vm_count|Number of VMs| 1
26+
|index_start|From where the index start| 1
2627
|vm_hostname_prefix|VM hostname prefix|vm
2728
|memory|RAM in MB|1024
2829
|hugepages|Use Hugepages|false

modules/virt-machine/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variable "vm_count" {
1010

1111
variable "index_start" {
1212
description = "From where the indexig start"
13-
defaut = 1
13+
default = 1
1414
}
1515

1616
variable "vm_hostname_prefix" {

0 commit comments

Comments
 (0)