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

25 lines
467 B
Terraform
Raw Permalink Normal View History

2023-05-17 09:00:17 +00:00
terraform {
backend "pg" {
schema_name = "concourse"
2023-05-17 09:00:17 +00:00
}
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
}
}
}
provider "libvirt" {
uri = "qemu+ssh://root@lewis.hyp/system"
}
module "concourse" {
2023-07-05 21:52:38 +00:00
source = "git::https://git.kun.is/home/tf-modules.git//debian"
name = "concourse"
domain_name = "tf-concourse"
memory = 1024 * 4
2023-05-17 09:00:17 +00:00
hypervisor_host = "lewis.hyp"
2023-06-19 13:01:09 +00:00
disk_size = 1024 * 1024 * 1024 * 50
2023-05-17 09:00:17 +00:00
}