homelab-nomad/root.tf

12 lines
235 B
Terraform
Raw Normal View History

2022-07-25 17:50:12 +00:00
# Can't run this as part of root and as a submodule because of tf state
module "acls" {
source = "./acls"
2022-06-17 22:19:19 +00:00
nomad_address = var.nomad_address
nomad_secret_id = var.nomad_secret_id
}
2022-11-02 19:32:27 +00:00
terraform {
required_version = ">=1.2.9"
}