This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
lewis/terraform/main.tf
2023-07-05 23:52:38 +02:00

24 lines
467 B
HCL

terraform {
backend "pg" {
schema_name = "concourse"
}
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
}
}
}
provider "libvirt" {
uri = "qemu+ssh://root@lewis.hyp/system"
}
module "concourse" {
source = "git::https://git.kun.is/home/tf-modules.git//debian"
name = "concourse"
domain_name = "tf-concourse"
memory = 1024 * 4
hypervisor_host = "lewis.hyp"
disk_size = 1024 * 1024 * 1024 * 50
}