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" {
description = "VM CPU"
type = string
default = "0.2"
}
variable "vcpu" {
description = "VM vCPU"
type = string
default = "2"
}
variable "ram" {
description = "VM RAM"
type = string
default = "512"
}
variable "depends" {