mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-22 16:04:25 +01:00
5ed9ee1903
Signed-off-by: Magic_RB <magic_rb@redalder.org>
40 lines
460 B
HCL
40 lines
460 B
HCL
terraform {
|
|
required_providers {
|
|
nomad = {}
|
|
}
|
|
}
|
|
|
|
variable "flake_rev" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_ref" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_sha" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_host" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_host_alt" {
|
|
type = string
|
|
}
|
|
|
|
module "nfs" {
|
|
source = "../../modules/nfs"
|
|
|
|
node_dcs = [ "do-1" ]
|
|
region = "do-1"
|
|
}
|
|
|
|
module "gateway-mesh" {
|
|
source = "../../modules/gateway-mesh"
|
|
|
|
datacenters = [ "do-1" ]
|
|
}
|
|
|