This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
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
}