Update terraform/variables.tf, terraform/main.tf

This commit is contained in:
2022-12-10 20:18:13 +00:00
parent e8949372d3
commit 2e66911439
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ resource "proxmox_vm_qemu" "k3master" {
boot = "c"
onboot = true
disk {
size = var.k3master.drive[count.index]
size = var.k3master.drive
type = "scsi"
storage = var.k3master.storage
ssd = 1

View File

@@ -31,7 +31,7 @@ variable "k3master" {
name = list(string)
cores = number
memory = number
drive = list(string)
drive = string
storage = string
template = list(string)
node = list(string)