mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-22 16:04:25 +01:00
41 lines
627 B
Terraform
41 lines
627 B
Terraform
|
terraform {
|
||
|
backend "consul" {
|
||
|
address = "http://10.64.1.201:8500"
|
||
|
scheme = "http"
|
||
|
path = "team/terraform/state"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "nomad" {
|
||
|
address = "http://10.64.1.201:4646"
|
||
|
}
|
||
|
|
||
|
provider "vault" {
|
||
|
address = "https://vault.in.redalder.org:8200/"
|
||
|
}
|
||
|
|
||
|
variable "flake_rev" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "flake_host" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "flake_host_alt" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "flake_sha" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
module "infrastructure" {
|
||
|
source = "./infrastructure"
|
||
|
|
||
|
flake_rev = var.flake_rev
|
||
|
flake_host = var.flake_host
|
||
|
flake_host_alt = var.flake_host_alt
|
||
|
flake_sha = var.flake_sha
|
||
|
}
|