infra/services/caddy/job.tf

7 lines
244 B
Terraform
Raw Normal View History

2023-11-24 21:43:17 +00:00
resource "nomad_job" "app" {
jobspec = templatefile("${path.module}/conf/caddy.nomad.hcl", {
# caddyfile_internal = data.template_file.caddyfile-internal.rendered
caddyfile_public = data.template_file.caddyfile-public.rendered
})
}