cluster/nomad/main.tf

46 lines
646 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_host" {
type = string
}
variable "flake_host_alt" {
type = string
}
variable "flake_sha" {
type = string
}
module "regions" {
source = "./regions"
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.do-1 = nomad.do-1
nomad.homelab-1 = nomad.homelab-1
}
}