Compare commits

...

2 commits

Author SHA1 Message Date
wizzdom
f40d37e6de
nessus: add credentials, increase memory allocation 2024-12-12 01:46:05 +00:00
James Hackett
2a0f414dcc
Add nessus for internal security scans 2023-12-09 18:19:32 +00:00

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
}
}
}
}