Add nessus for internal security scans
This commit is contained in:
parent
6ee5c15f57
commit
2a0f414dcc
1 changed files with 39 additions and 0 deletions
39
jobs/nessus.hcl
Normal file
39
jobs/nessus.hcl
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue