cluster/nomad/regions/main.tf

59 lines
848 B
Terraform
Raw Normal View History

terraform {
required_providers {
nomad = {
configuration_aliases = [
nomad.do-1,
nomad.homelab-1
]
}
}
}
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 "do-1" {
source = "./do-1"
flake_rev = var.flake_rev
flake_ref = var.flake_ref
flake_host = var.flake_host
flake_host_alt = var.flake_host_alt
flake_sha = var.flake_sha
providers = {
nomad = nomad.do-1
}
}
module "homelab-1" {
source = "./homelab-1"
flake_rev = var.flake_rev
flake_ref = var.flake_ref
flake_host = var.flake_host
flake_host_alt = var.flake_host_alt
flake_sha = var.flake_sha
providers = {
nomad = nomad.homelab-1
}
}