cluster/nomad/regions/homelab-1/main.tf
Magic_RB 5ed9ee1903
Terraform: add flake_ref to allow for branches
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-09-18 18:33:26 +02:00

47 lines
618 B
HCL

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
}
provider "nomad" {
address = "http://10.64.2.1:4646"
region = "homelab-1"
alias = "homelab-1"
}
module "nfs" {
source = "../../modules/nfs"
node_dcs = [ "homelab-1" ]
region = "homelab-1"
providers = {
nomad = nomad.homelab-1
}
}
module "gateway-mesh" {
source = "../../modules/gateway-mesh"
datacenters = [ "homelab-1" ]
providers = {
nomad = nomad.homelab-1
}
}