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" {
|
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" {
|
||||||
|
|
Loading…
Reference in New Issue