github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/e2e/terraform/etc/nomad.d/client-linux.hcl (about) 1 plugin_dir = "/opt/nomad/plugins" 2 3 client { 4 enabled = true 5 options = { 6 "user.denylist" = "www-data" 7 } 8 } 9 10 plugin "nomad-driver-podman" { 11 config { 12 volumes { 13 enabled = true 14 } 15 } 16 } 17 18 plugin "nomad-driver-ecs" { 19 config { 20 enabled = true 21 cluster = "nomad-rtd-e2e" 22 region = "us-east-1" 23 } 24 } 25 26 plugin "raw_exec" { 27 config { 28 enabled = true 29 } 30 } 31 32 plugin "docker" { 33 config { 34 allow_privileged = true 35 36 volumes { 37 enabled = true 38 } 39 } 40 }