36 lines
757 B
HCL
36 lines
757 B
HCL
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" {
|
|
# alias = "jefke"
|
|
uri = "qemu+ssh://root@jefke.hyp/system?known_hosts=/etc/ssh/ssh_known_hosts"
|
|
}
|
|
|
|
module "setup_jefke" {
|
|
source = "./modules/setup"
|
|
# providers = {
|
|
# libvirt = libvirt.jefke
|
|
# }
|
|
}
|
|
|
|
module "bancomart" {
|
|
source = "./modules/debian"
|
|
name = "bancomart"
|
|
ram = 2048
|
|
storage = 10
|
|
# providers = {
|
|
# libvirt = libvirt.jefke
|
|
# }
|
|
}
|