Add nessus for internal security scans

This commit is contained in:
James Hackett 2023-12-09 18:19:32 +00:00 committed by GitHub
parent 6ee5c15f57
commit 2a0f414dcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

39
jobs/nessus.hcl Normal file
View file

@ -0,0 +1,39 @@
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"]
}
resources {
memory = 1000
}
}
}
}