22 lines
416 B
Terraform
22 lines
416 B
Terraform
|
variable "base_hostname" {
|
||
|
type = string
|
||
|
description = "Base hostname to serve content from"
|
||
|
default = "dev.homelab"
|
||
|
}
|
||
|
|
||
|
locals {
|
||
|
config_data = file("${path.module}/config.yml")
|
||
|
}
|
||
|
|
||
|
resource "nomad_job" "blocky" {
|
||
|
hcl2 {
|
||
|
enabled = true
|
||
|
vars = {
|
||
|
"config_data" = "${local.config_data}",
|
||
|
"base_hostname" = "${var.base_hostname}",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
jobspec = file("${path.module}/blocky.nomad")
|
||
|
}
|