fix(module): adding default values for virtualMachine variables

This commit is contained in:
Philippe Caseiro 2023-01-20 13:45:40 +01:00
parent 6a9181d1b4
commit e42ce275c1
1 changed files with 3 additions and 0 deletions

View File

@ -43,16 +43,19 @@ variable "network_interfaces" {
variable "cpu" { variable "cpu" {
description = "VM CPU" description = "VM CPU"
type = string type = string
default = "0.2"
} }
variable "vcpu" { variable "vcpu" {
description = "VM vCPU" description = "VM vCPU"
type = string type = string
default = "2"
} }
variable "ram" { variable "ram" {
description = "VM RAM" description = "VM RAM"
type = string type = string
default = "512"
} }
variable "depends" { variable "depends" {