terraform { backend "pg" { schema_name = "dmz_dns" } required_providers { libvirt = { source = "dmacvicar/libvirt" version = "0.7.1" # https://github.com/dmacvicar/terraform-provider-libvirt/issues/1040 } template = { source = "hashicorp/template" } } } provider "libvirt" { # https://libvirt.org/uri.html#libssh-and-libssh2-transport uri = "qemu+ssh://root@atlas.hyp/system?known_hosts=/etc/ssh/ssh_known_hosts" } module "vm" { source = "git::https://git.kun.is/home/tf-modules.git//debian" name = "hermes" domain_name = "tf-hermes" fixed_address = "192.168.30.7/24" mac = "CA:FE:C0:FF:EE:07" fixed_dns = "192.168.30.1" data_disk = "/kvm/data/hermes-data" insecure_password = true # hypervisor_host = "atlas.hyp" }