Files
homelab/glusterfs/terraform/vars.tf

25 lines
386 B
Terraform
Raw Normal View History

variable "proxmox_host" {
default = "pve-testing"
}
variable "template_name" {
default = "ubuntu-2404-ci"
}
variable "storage_disks" {
default = "local-lvm"
}
2026-03-14 18:05:01 +01:00
variable "nic_name_external" {
default = "vmbr0"
}
2026-03-14 18:05:01 +01:00
variable "nic_name_internal" {
default = "testNet"
}
variable "hosts" {
type = list(string)
default = ["gluster1", "gluster2", "gluster3"]
}