terraform { backend "pg" { schema_name = "dmz_dns" conn_str = "postgres://terraform@10.42.0.1/terraform_state" } required_providers { libvirt = { source = "dmacvicar/libvirt" } template = { source = "hashicorp/template" } } } provider "libvirt" { uri = "qemu+ssh://root@atlas.lan/system" } module "vm" { source = "git::https://git.pim.kunis.nl/home/tf-modules.git//debian" name = "hermes" domain_name = "tf-hermes" use_host_cert = false fixed_address = "192.168.30.7/24" mac = "CA:FE:C0:FF:EE:07" }