diff --git a/lb.tf b/lb.tf index 34c8709..0b4cd57 100644 --- a/lb.tf +++ b/lb.tf @@ -38,7 +38,7 @@ resource "libvirt_domain" "lb" { vcpu = var.lb_vcpu memory = var.lb_memory_size cloudinit = libvirt_cloudinit_disk.lb_cloudinit.id - autostart = true + autostart = false cpu = { mode = "host-passthrough" diff --git a/master.tf b/master.tf index 8a3f2b1..e3444e6 100644 --- a/master.tf +++ b/master.tf @@ -18,7 +18,7 @@ resource "libvirt_domain" "master" { vcpu = var.master_vcpu memory = var.master_memory_size coreos_ignition = libvirt_ignition.master_ignition.id - autostart = true + autostart = false cpu = { mode = "host-passthrough" diff --git a/storage.tf b/storage.tf index 563c0a6..edbadd0 100644 --- a/storage.tf +++ b/storage.tf @@ -32,7 +32,7 @@ resource "libvirt_domain" "storage" { vcpu = var.storage_vcpu memory = var.storage_memory_size cloudinit = libvirt_cloudinit_disk.storage_cloudinit.id - autostart = true + autostart = false cpu = { mode = "host-passthrough" diff --git a/worker.tf b/worker.tf index b3814c0..b99c88d 100644 --- a/worker.tf +++ b/worker.tf @@ -18,7 +18,7 @@ resource "libvirt_domain" "worker" { vcpu = var.worker_vcpu memory = var.worker_memory_size coreos_ignition = libvirt_ignition.worker_ignition.id - autostart = true + autostart = false cpu = { mode = "host-passthrough"