Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
22 lines
447 B
HCL
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"
|
|
}
|