mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-29 11:36:16 +01:00
2e61e7ef3c
Signed-off-by: main <magic_rb@redalder.org>
34 lines
511 B
HCL
34 lines
511 B
HCL
variable "flake_rev" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_sha" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_host" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_host_alt" {
|
|
type = string
|
|
}
|
|
|
|
module "do-1" {
|
|
source = "./do-1"
|
|
|
|
flake_rev = var.flake_rev
|
|
flake_host = var.flake_host
|
|
flake_host_alt = var.flake_host_alt
|
|
flake_sha = var.flake_sha
|
|
}
|
|
|
|
module "homelab-1" {
|
|
source = "./homelab-1"
|
|
|
|
flake_rev = var.flake_rev
|
|
flake_host = var.flake_host
|
|
flake_host_alt = var.flake_host_alt
|
|
flake_sha = var.flake_sha
|
|
}
|