nixos-servers/legacy/terraform_modules/debian/variables.tf
Pim Kunis 721623c8fc update to nixos 23.11
enable static IP for terraformed VMs
restructure legacy code
move hermes code to this repo
don't use data disk for hermes leases
2023-12-17 16:22:22 +01:00

24 lines
304 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
}
variable "static_ip" {
type = string
default = null
}