nixos-servers/legacy/terraform_modules/debian/variables.tf
Pim Kunis 111bf68a0a manage lewis with nix
move docker swarm ansible to this repo
move thecloud ansible to this repo
support data disks in terraform
2023-12-25 19:22:22 +01:00

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