2023-11-25 20:00:21 +00:00
|
|
|
variable "name" {
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ram" {
|
|
|
|
type = number
|
|
|
|
description = "In MiB"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "storage" {
|
|
|
|
type = number
|
|
|
|
description = "In GiB"
|
|
|
|
}
|
2023-11-29 17:59:36 +00:00
|
|
|
|
|
|
|
variable "mac" {
|
|
|
|
type = string
|
|
|
|
description = "MAC address"
|
|
|
|
default = null
|
|
|
|
}
|
2023-12-17 15:22:22 +00:00
|
|
|
|
|
|
|
variable "static_ip" {
|
|
|
|
type = string
|
|
|
|
default = null
|
|
|
|
}
|
2023-12-25 18:22:22 +00:00
|
|
|
|
|
|
|
variable "data_disk" {
|
|
|
|
type = string
|
|
|
|
default = null
|
|
|
|
}
|