cluster/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

59 lines
900 B
HCL

terraform {
backend "consul" {
address = "http://10.64.2.1:8500"
scheme = "http"
path = "team/terraform/state"
}
}
provider "nomad" {
address = "http://10.64.2.1:4646"
region = "homelab-1"
alias = "homelab-1"
}
provider "nomad" {
address = "http://10.64.2.1:4646"
region = "do-1"
alias = "do-1"
}
provider "vault" {
address = "https://vault.in.redalder.org:8200/"
}
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 "nomad" {
source = "./nomad"
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
}
}