21 lines
319 B
Terraform
21 lines
319 B
Terraform
|
|
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"]
|
||
|
|
}
|