File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
22
22
|os_img_url|URL to the OS image|https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
23
23
|vm_count|Number of VMs| 1
24
24
|vm_hostname_prefix|VM hostname prefix|vm
25
- |memory|RAM in MB|512
25
+ |memory|RAM in MB|1024
26
26
|vcpu|Number of vCPUs|1
27
27
|pool|Storage pool name|default
28
28
|system_volume|System Volume size (GB)|10
29
29
|dhcp|Use DHCP or Static IP settings|false
30
- |ip_address|"List of static IP addresses|[ "192.168.123.1 " ]
30
+ |ip_address|"List of static IP addresses|[ "192.168.123.101 " ]
31
31
|ip_nameserver|Static IP addresses of a nameserver|192.168.123.1
32
32
|ip_gateway|Static IP addresses of a gateway|192.168.123.1
33
33
|ssh_admin|Admin user with ssh access|ssh-admin
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ variable "hostname" {
27
27
variable "memory" {
28
28
description = " RAM in MB"
29
29
type = string
30
- default = " 512 "
30
+ default = " 1024 "
31
31
}
32
32
33
33
variable "vcpu" {
@@ -59,7 +59,7 @@ variable "bridge" {
59
59
variable "ip_address" {
60
60
description = " List of IP addresses"
61
61
type = list (string )
62
- default = [ " 192.168.123.1 " ]
62
+ default = [ " 192.168.123.101 " ]
63
63
}
64
64
65
65
variable "ip_nameserver" {
You can’t perform that action at this time.
0 commit comments