mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-28 02:56:13 +01:00
2e61e7ef3c
Signed-off-by: main <magic_rb@redalder.org>
44 lines
544 B
HCL
44 lines
544 B
HCL
variable "flake_rev" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_sha" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_host" {
|
|
type = string
|
|
}
|
|
|
|
variable "flake_host_alt" {
|
|
type = string
|
|
}
|
|
|
|
provider "nomad" {
|
|
address = "http://10.64.1.201:4646"
|
|
region = "do-1"
|
|
alias = "do-1"
|
|
}
|
|
|
|
module "nfs" {
|
|
source = "../../modules/nfs"
|
|
|
|
node_dcs = [ "do-1" ]
|
|
region = "do-1"
|
|
|
|
providers = {
|
|
nomad = nomad.do-1
|
|
}
|
|
}
|
|
|
|
module "gateway-mesh" {
|
|
source = "../../modules/gateway-mesh"
|
|
|
|
datacenters = [ "do-1" ]
|
|
|
|
providers = {
|
|
nomad = nomad.do-1
|
|
}
|
|
}
|
|
|