nixos-servers/legacy/terraform_modules/debian/variables.tf

30 lines
363 B
Terraform
Raw Normal View History

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
}
variable "data_disk" {
type = string
default = null
}