manage lewis with nix
move docker swarm ansible to this repo move thecloud ansible to this repo support data disks in terraform
This commit is contained in:
parent
d7ef46b642
commit
111bf68a0a
92 changed files with 2730 additions and 26 deletions
40
legacy/projects/thecloud/vm/main.tf
Normal file
40
legacy/projects/thecloud/vm/main.tf
Normal file
|
@ -0,0 +1,40 @@
|
|||
terraform {
|
||||
backend "pg" {
|
||||
schema_name = "thecloud"
|
||||
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 = "lewis"
|
||||
uri = "qemu+ssh://root@lewis.hyp/system?known_hosts=/etc/ssh/ssh_known_hosts"
|
||||
}
|
||||
|
||||
module "setup_lewis" {
|
||||
source = "../../../terraform_modules/setup"
|
||||
providers = {
|
||||
libvirt = libvirt.lewis
|
||||
}
|
||||
}
|
||||
|
||||
module "thecloud" {
|
||||
source = "../../../terraform_modules/debian"
|
||||
name = "thecloud"
|
||||
ram = 1024
|
||||
storage = 25
|
||||
mac = "CA:FE:C0:FF:EE:0A"
|
||||
data_disk = "/mnt/data/volumes/thecloud-data.qcow2"
|
||||
providers = {
|
||||
libvirt = libvirt.lewis
|
||||
}
|
||||
|
||||
depends_on = [ module.setup_lewis ]
|
||||
}
|
Reference in a new issue