Add nessus for internal security scans

这个提交包含在:
James Hackett 2023-12-09 18:19:32 +00:00 提交者 GitHub
父节点 6ee5c15f57
当前提交 2a0f414dcc
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

39
jobs/nessus.hcl 普通文件
查看文件

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