github.com/hernad/nomad@v1.6.112/command/testdata/fmt/job.in.hcl (about)

     1  # Copyright (c) HashiCorp, Inc.
     2  # SPDX-License-Identifier: MPL-2.0
     3  
     4    job    "job1"   {
     5    type          = "service"
     6    datacenters = [   "dc1"  ]
     7    group "group1"   {
     8      count = 1
     9      task "task1" {
    10        driver   = "exec"
    11        config   {
    12              command = "/bin/sleep"
    13        }
    14        resources {
    15              cpu    = 1000
    16            memory = 512
    17         }
    18  }
    19  }
    20  }