galene-cloud/tofu/variables.tf
Julien Riou 44c974c755
feat: Bump versions
- Galene 1.0
- Go 1.25.4
- Debian 13

Signed-off-by: Julien Riou <julien@riou.xyz>
2025-11-30 14:50:29 +01:00

22 lines
456 B
HCL

variable "domain" {
description = "Name of the domain zone"
type = string
}
variable "hostname" {
description = "Name of the server"
type = string
default = "galene"
}
variable "openstack_image" {
description = "Name of the OpenStack image"
type = string
default = "Debian 13"
}
variable "openstack_flavor" {
description = "Name of the OpenStack flavor"
type = string
default = "d2-2"
}