fix(terraform): Change replicate from number to boolean
Some checks failed
CD - Deploy Infrastructure / Terraform Validation (push) Successful in 15s
CD - Deploy Infrastructure / Deploy on pve1 (push) Failing after 41s
CD - Deploy Infrastructure / Deploy on pve2 (push) Failing after 42s
CD - Deploy Infrastructure / Deploy on pve3 (push) Failing after 44s
CD - Deploy Infrastructure / Validate K3s Cluster (push) Has been skipped
CD - Deploy Infrastructure / Deployment Notification (push) Failing after 1s

The replicate attribute expects a boolean value (true/false), not a number.
Changed replicate = 1 to replicate = true in pve1 and pve2 configs.
This commit is contained in:
Tellsanguis 2025-11-26 17:54:25 +01:00
parent 315e67c548
commit a60a54f1e7
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ resource "proxmox_vm_qemu" "k3s_server_1" {
type = "disk"
storage = var.storage_pool
iothread = true
replicate = 1
replicate = true
}
ipconfig0 = "ip=${var.k3s_server_1_config.ip},gw=${var.k3s_gateway}"

View file

@ -51,7 +51,7 @@ resource "proxmox_vm_qemu" "k3s_server_2" {
type = "disk"
storage = var.storage_pool
iothread = true
replicate = 1
replicate = true
}
ipconfig0 = "ip=${var.k3s_server_2_config.ip},gw=${var.k3s_gateway}"