https://github.com/cloud-gov/nessus-agent-boshrelease
Bosh release for the nessus agent
https://github.com/cloud-gov/nessus-agent-boshrelease
Last synced: 6 months ago
JSON representation
Bosh release for the nessus agent
- Host: GitHub
- URL: https://github.com/cloud-gov/nessus-agent-boshrelease
- Owner: cloud-gov
- License: other
- Created: 2016-03-23T02:26:09.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2025-10-01T17:29:50.000Z (9 months ago)
- Last Synced: 2025-10-01T19:22:09.641Z (9 months ago)
- Language: Shell
- Size: 70.3 KB
- Stars: 6
- Watchers: 10
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Codeowners: CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# BOSH Release for the nessus agent
## Usage
To use this bosh release, first upload it to your bosh:
```sh
bosh env
git clone https://github.com/18F/cg-nessus-agent-boshrelease.git
cd cg-nessus-agent-boshrelease
bosh upload-release
```
If co-locating the `nessus-agent` as a job on a specific BOSH deployment manifest, you could include the `nessus-agent` similar to this:
```yml
# some-deployment-manifest.yml
releases:
- ...
- name: nessus-agent
version: latest
instance_groups:
- name: some-deployment
instances: ...
azs: ...
jobs:
- name: some-job
release: ...
# here's where you could add the nessus-agent directly:
- name: nessus-agent
release: nessus-agent
properties:
nessus-agent:
key: aaaabbbbbccccddddeeee11112222333
server: cloud.tenable.com
port: 443
```