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.
hermes/terraform/main.tf
2023-04-17 09:39:49 +02:00

30 lines
682 B
HCL

terraform {
backend "pg" {
schema_name = "dmz_dns"
conn_str = "postgres://terraform@10.42.0.1/terraform_state"
}
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
}
template = {
source = "hashicorp/template"
}
}
}
provider "libvirt" {
uri = "qemu+ssh://root@atlas.lan/system"
}
module "vm" {
source = "git::https://git.pim.kunis.nl/home/tf-modules.git//debian"
name = "hermes"
domain_name = "tf-hermes"
data_disk = "/kvm/data/hermes-data"
use_host_cert = false
fixed_address = "192.168.30.7/24"
mac = "CA:FE:C0:FF:EE:07"
fixed_dns = "192.168.30.1"
}