initial commit

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2022-03-29 08:46:30 +05:30
commit f3e0b2271a
9 changed files with 418 additions and 0 deletions

10
bots/main.tf Normal file
View File

@@ -0,0 +1,10 @@
provider "nomad" {}
//Set everything via environment variables
resource "nomad_job" "singh3" {
jobspec = file("./singh3.nomad")
purge_on_destroy = true
hcl2 {
enabled = true
}
}