Newer
Older
openstack-caracal-dc-dc / opentofu / versions.tf
# Provider version CONFIRMED this session (2026-07-09) against the actual
# releases page: dmacvicar/libvirt latest tag is v0.9.8. Pinned to that exact
# release rather than a range -- re-verify and bump deliberately, don't drift.
# (This repo has no OpenTofu/tofu binary available to it this session -- this
# file, and everything under opentofu/, is UNVALIDATED: run
# `bash scripts/opentofu-validate.sh` on a machine with the tofu binary and
# network access to the provider registry before trusting any of it.)

terraform {
  required_version = ">= 1.6.0"

  required_providers {
    libvirt = {
      source  = "dmacvicar/libvirt"
      version = "0.9.8"
    }
  }
}