Skip to content

Commit 0178abc

Browse files
Update Readme
1 parent 537904b commit 0178abc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
2626
|vm_count|Number of VMs| 1
2727
|vm_hostname_prefix|VM hostname prefix|vm
2828
|memory|RAM in MB|1024
29+
|hugepages|Use Hugepages|false
2930
|vcpu|Number of vCPUs|1
3031
|pool|Storage pool name|default
3132
|system_volume|System Volume size (GB)|10
@@ -65,6 +66,7 @@ module "nodes" {
6566
vm_hostname_prefix = "server"
6667
vm_count = 3
6768
memory = "2048"
69+
hugepages = false
6870
vcpu = 1
6971
pool = "terra_pool"
7072
system_volume = 20
@@ -87,7 +89,7 @@ output "ip_addresses" {
8789
}
8890
```
8991

90-
Static IP settings:
92+
Static IP settings and Hugepages:
9193

9294
```hcl
9395
terraform {
@@ -110,6 +112,7 @@ module "nodes" {
110112
vm_hostname_prefix = "server"
111113
vm_count = 3
112114
memory = "2048"
115+
hugepages = true
113116
vcpu = 1
114117
pool = "terra_pool"
115118
system_volume = 20

0 commit comments

Comments
 (0)