19 lines
245 B
HCL
19 lines
245 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "ram" {
|
|
type = number
|
|
description = "In MiB"
|
|
}
|
|
|
|
variable "storage" {
|
|
type = number
|
|
description = "In GiB"
|
|
}
|
|
|
|
variable "mac" {
|
|
type = string
|
|
description = "MAC address"
|
|
default = null
|
|
}
|