Browse Source

disable auto-start

standalone
Nicolas Massé 5 years ago
parent
commit
f62a901923
  1. 2
      lb.tf
  2. 2
      master.tf
  3. 2
      storage.tf
  4. 2
      worker.tf

2
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"

2
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"

2
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"

2
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"

Loading…
Cancel
Save