Add hcl extention for nomad files

to get syntax highlighting be default.
This commit is contained in:
2025-04-29 20:58:59 +10:00
parent a36f10ef73
commit 05771d891b
6 changed files with 16 additions and 14 deletions

View File

@@ -4,13 +4,13 @@ provider "nomad" {
}
resource "nomad_job" "hello_world" {
jobspec = file("hello-world.nomad")
jobspec = file("hello-world.nomad.hcl")
}
resource "nomad_job" "traefik" {
jobspec = file("traefik.nomad")
jobspec = file("traefik.nomad.hcl")
}
resource "nomad_job" "webapp" {
jobspec = file("webapp.nomad")
jobspec = file("webapp.nomad.hcl")
}