# S1 fixture (BAD): libvirt_domain sets `memory` with NO `memory_unit`.
# This is the exact defect that shipped the 2026-07-12 Office1 OPNsense
# 2 MiB guest. scripts/opentofu-validate.sh S1 MUST reject this.
resource "libvirt_domain" "bad" {
  name    = "s1-bad"
  memory  = 2048
  vcpu    = 2
  type    = "kvm"
  running = true
}
