Files
homelab/glusterfs/terraform/vars.tf

21 lines
319 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"
}
variable "nic_name" {
default = "vmbr0"
}
variable "hosts" {
type = list(string)
default = ["gluster1", "gluster2", "gluster3"]
}