terraform { backend "pg" { schema_name = "hermes-data" } required_providers { libvirt = { source = "dmacvicar/libvirt" version = "0.7.1" # https://github.com/dmacvicar/terraform-provider-libvirt/issues/1040 } } } 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" } resource "libvirt_volume" "data" { name = "hermes-data" pool = "data" size = 1024 * 1024 lifecycle { prevent_destroy = true } } output "data_disk_id" { value = libvirt_volume.data.id }