style(terraform): Fix formatting alignment in disk blocks
Some checks failed
CD - Deploy Infrastructure / Terraform Validation (push) Failing after 9s
CD - Deploy Infrastructure / Deploy on pve1 (push) Has been skipped
CD - Deploy Infrastructure / Deploy on pve2 (push) Has been skipped
CD - Deploy Infrastructure / Deploy on pve3 (push) Has been skipped
CD - Deploy Infrastructure / Validate K3s Cluster (push) Has been skipped
CD - Deploy Infrastructure / Deployment Notification (push) Failing after 0s

This commit is contained in:
Tellsanguis 2025-11-26 17:53:31 +01:00
parent 2ccccc5ce1
commit 315e67c548
2 changed files with 10 additions and 10 deletions

View file

@ -46,11 +46,11 @@ resource "proxmox_vm_qemu" "k3s_server_1" {
}
disk {
slot = "scsi0"
size = var.k3s_server_1_config.disk_size
type = "disk"
storage = var.storage_pool
iothread = true
slot = "scsi0"
size = var.k3s_server_1_config.disk_size
type = "disk"
storage = var.storage_pool
iothread = true
replicate = 1
}

View file

@ -46,11 +46,11 @@ resource "proxmox_vm_qemu" "k3s_server_2" {
}
disk {
slot = "scsi0"
size = var.k3s_server_2_config.disk_size
type = "disk"
storage = var.storage_pool
iothread = true
slot = "scsi0"
size = var.k3s_server_2_config.disk_size
type = "disk"
storage = var.storage_pool
iothread = true
replicate = 1
}