chore: add Terraform config for GlusterFS

This commit is contained in:
Benedikt Penner
2026-03-14 12:31:44 +01:00
parent 62abbf35fd
commit 1de82598cf
15 changed files with 664 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
variable "proxmox_host" {
default = "pve-testing"
}
variable "template_name" {
default = "ubuntu-2404-ci"
}
variable "storage_disks" {
default = "local-lvm"
}
variable "nic_name" {
default = "vmbr0"
}
variable "hosts" {
type = list(string)
default = ["gluster1", "gluster2", "gluster3"]
}