This commit is contained in:
James Hackett 2025-01-28 14:38:29 +00:00 committed by GitHub
commit 6000cb38c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

48
jobs/nessus.hcl Normal file
View file

@ -0,0 +1,48 @@
job "nessus" {
datacenters = ["aperture"]
type = "service"
group "web" {
network {
port "http" {
to = 8834
}
}
service {
name = "nessus"
port = "http"
check {
type = "http"
path = "/"
interval = "10s"
timeout = "2s"
protocol = "https"
}
}
task "nessus" {
driver = "docker"
config {
image = "tenable/nessus:latest-ubuntu"
ports = ["http"]
}
template {
data = <<EOF
USERNAME={{ key "nessus/username" }}
PASSWORD={{ key "nessus/password" }}
ACTIVATION_CODE={{ key "nessus/activation_code" }}
EOF
destination = ".env"
env = true
}
resources {
memory = 2000
}
}
}
}