# Provider source mapping for this module. Child modules MUST declare their own
# required_providers so OpenTofu maps the local name `libvirt` to
# dmacvicar/libvirt. WITHOUT this, OpenTofu infers the `libvirt_` resource
# prefix as hashicorp/libvirt (which does not exist) and `tofu init` fails.
# Version is pinned once at the ROOT (opentofu/versions.tf); child modules
# declare source only. (Found on the first real `tofu init`; DOCFIX-179.)
terraform {
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
}
}
}