nixos-servers/terraform/modules/debian/variables.tf
2023-11-29 18:59:36 +01:00

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
}