feat: Add uptime module for monitoring server availability

This commit is contained in:
Ben Martin 2024-07-27 12:22:23 +00:00
parent 57b37c1c5e
commit 9a4cfd8e8f
Signed by: ben
GPG key ID: 859A655FCD290E4A
3 changed files with 63 additions and 0 deletions

4
modules/uptime/main.tf Normal file
View file

@ -0,0 +1,4 @@
resource "nomad_job" "uptime" {
jobspec = file("${path.module}/jobspec.json")
json = true
}