fix(module): adding default values for virtualMachine variables
This commit is contained in:
parent
6a9181d1b4
commit
e42ce275c1
|
@ -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" {
|
||||
|
|
Loading…
Reference in New Issue