This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/terraform/data/main.tf

31 lines
496 B
Terraform
Raw Normal View History

terraform {
backend "pg" {
schema_name = "max-data"
conn_str = "postgres://terraform@10.42.0.1/terraform_state"
}
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
}
}
}
provider "libvirt" {
2023-04-26 12:53:57 +00:00
uri = "qemu+ssh://root@atlas.hyp/system"
}
resource "libvirt_volume" "data" {
name = "max-data"
pool = "data"
size = 1024 * 1024 * 1024 * 65
lifecycle {
prevent_destroy = true
}
}
output "data_disk_id" {
value = libvirt_volume.data.id
}