Add nessus for internal security scans
这个提交包含在:
父节点
6ee5c15f57
当前提交
2a0f414dcc
共有 1 个文件被更改,包括 39 次插入 和 0 次删除
39
jobs/nessus.hcl
普通文件
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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
正在加载...
在新工单中引用