2023-11-25 20:00:21 +00:00
|
|
|
terraform {
|
|
|
|
backend "pg" {
|
|
|
|
schema_name = "testje"
|
|
|
|
conn_str = "postgresql://terraform@jefke.hyp/terraformstates"
|
|
|
|
}
|
|
|
|
|
|
|
|
required_providers {
|
|
|
|
libvirt = {
|
|
|
|
source = "dmacvicar/libvirt"
|
|
|
|
version = "0.7.1" # https://github.com/dmacvicar/terraform-provider-libvirt/issues/1040
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# https://libvirt.org/uri.html#libssh-and-libssh2-transport
|
|
|
|
provider "libvirt" {
|
2023-11-29 17:59:36 +00:00
|
|
|
alias = "jefke"
|
2023-11-25 20:00:21 +00:00
|
|
|
uri = "qemu+ssh://root@jefke.hyp/system?known_hosts=/etc/ssh/ssh_known_hosts"
|
|
|
|
}
|
|
|
|
|
2023-11-29 17:59:36 +00:00
|
|
|
provider "libvirt" {
|
|
|
|
alias = "atlas"
|
|
|
|
uri = "qemu+ssh://root@atlas.hyp/system?known_hosts=/etc/ssh/ssh_known_hosts"
|
|
|
|
}
|
|
|
|
|
2023-11-25 20:00:21 +00:00
|
|
|
module "setup_jefke" {
|
|
|
|
source = "./modules/setup"
|
2023-11-29 17:59:36 +00:00
|
|
|
providers = {
|
|
|
|
libvirt = libvirt.jefke
|
|
|
|
}
|
2023-11-25 20:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module "bancomart" {
|
|
|
|
source = "./modules/debian"
|
|
|
|
name = "bancomart"
|
2023-11-29 16:21:18 +00:00
|
|
|
ram = 4096
|
|
|
|
storage = 25
|
2023-11-29 17:59:36 +00:00
|
|
|
providers = {
|
|
|
|
libvirt = libvirt.jefke
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module "setup_atlas" {
|
|
|
|
source = "./modules/setup"
|
|
|
|
providers = {
|
|
|
|
libvirt = libvirt.atlas
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module "maestro" {
|
|
|
|
source = "./modules/debian"
|
|
|
|
name = "maestro"
|
|
|
|
ram = 8192
|
|
|
|
storage = 35
|
|
|
|
mac = "CA:FE:C0:FF:EE:08"
|
|
|
|
providers = {
|
|
|
|
libvirt = libvirt.atlas
|
|
|
|
}
|
2023-11-25 20:00:21 +00:00
|
|
|
}
|