Skip to content

Commit ab3a98f

Browse files
Update defaults
1 parent d7a30e3 commit ab3a98f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
2222
|os_img_url|URL to the OS image|https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
2323
|vm_count|Number of VMs| 1
2424
|vm_hostname_prefix|VM hostname prefix|vm
25-
|memory|RAM in MB|512
25+
|memory|RAM in MB|1024
2626
|vcpu|Number of vCPUs|1
2727
|pool|Storage pool name|default
2828
|system_volume|System Volume size (GB)|10
2929
|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" ]
3131
|ip_nameserver|Static IP addresses of a nameserver|192.168.123.1
3232
|ip_gateway|Static IP addresses of a gateway|192.168.123.1
3333
|ssh_admin|Admin user with ssh access|ssh-admin

modules/virt-machine/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "hostname" {
2727
variable "memory" {
2828
description = "RAM in MB"
2929
type = string
30-
default = "512"
30+
default = "1024"
3131
}
3232

3333
variable "vcpu" {
@@ -59,7 +59,7 @@ variable "bridge" {
5959
variable "ip_address" {
6060
description = "List of IP addresses"
6161
type = list(string)
62-
default = [ "192.168.123.1" ]
62+
default = [ "192.168.123.101" ]
6363
}
6464

6565
variable "ip_nameserver" {

0 commit comments

Comments
 (0)