File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 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
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
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ variable "hostname" {
2727variable "memory" {
2828 description = " RAM in MB"
2929 type = string
30- default = " 512 "
30+ default = " 1024 "
3131}
3232
3333variable "vcpu" {
@@ -59,7 +59,7 @@ variable "bridge" {
5959variable "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
6565variable "ip_nameserver" {
You can’t perform that action at this time.
0 commit comments