tf-infra/modules/server/variables.tf
Lander Van den Bulcke b9f3259f6a
feat: add servers module
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-01-13 15:29:50 +01:00

22 lines
447 B
HCL

variable "hostname" {
type = string
description = "The hostname for the server"
}
variable "location" {
type = string
description = "The datacenter location for the server"
default = "nbg1"
}
variable "type" {
type = string
description = "The server type"
default = "cax11"
}
variable "dns_zone" {
type = string
description = "The Cloudflare DNS zone"
default = "escapeangle.com"
}