Compare commits
2 commits
master
...
add-nessus
Author | SHA1 | Date | |
---|---|---|---|
|
f40d37e6de | ||
|
2a0f414dcc |
1 changed files with 48 additions and 0 deletions
48
jobs/nessus.hcl
Normal file
48
jobs/nessus.hcl
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue