aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/terraform/1n_nmd/prod_storage/resources.tf
blob: 4c42927be6df1660bf2ed9c103bde68862bb53b3 (plain)
1
2
3
4
5
6
7
8
9
resource "nomad_job" "prod_nginx" {
  provider = nomad
  jobspec  = file("${path.module}/prod-nginx.nomad")
}

resource "nomad_job" "prod_storage" {
  provider = nomad
  jobspec  = file("${path.module}/prod-storage.nomad")
}