17 lines
416 B
HCL
17 lines
416 B
HCL
terraform {
|
|
required_version = ">= 1.6.0"
|
|
|
|
required_providers {
|
|
libvirt = {
|
|
source = "dmacvicar/libvirt"
|
|
version = "~> 0.8"
|
|
}
|
|
}
|
|
}
|
|
|
|
# qemu+ssh:// so this can be run from your workstation against the T630;
|
|
# requires the connecting user to be in the T630's `libvirt` and `kvm`
|
|
# groups (see docs/SETUP.md step 2) — no sudo needed after that.
|
|
provider "libvirt" {
|
|
uri = var.libvirt_uri
|
|
}
|