-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support Cisco APIC (ACI) * Support Cisco UC (Unified Communication) * Refactor CI for matrix testing supported Splunk versions * Add developer docs using VS Code * Fix navigation for VMWare docs
- Loading branch information
Showing
81 changed files
with
2,052 additions
and
1,170 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| name: Review Secrets | ||
| on: [push] | ||
|
|
||
| jobs: | ||
| review_secrets: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v1 | ||
| - name: Trufflehog Actions Scan | ||
| uses: edplato/trufflehog-actions-scan@v0.9f-beta | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +0,0 @@ | ||
| [submodule "package/syslog-ng"] | ||
| path = package/syslog-ng | ||
| url = https://github.com/balabit/syslog-ng.git | ||
| branch = syslog-ng-3.25.1 | ||
| # | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "python.pythonPath": "venv/bin/python3", | ||
| "python.testing.pytestEnabled": true, | ||
| "python.testing.autoTestDiscoverOnSaveEnabled": true | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| { | ||
| // See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
| // for the documentation about the tasks.json format | ||
| "version": "2.0.0", | ||
| "tasks": [ | ||
| { | ||
| "label": "Setup step 1: python venv", | ||
| "type": "shell", | ||
| "command": "python3 -m venv ./venv", | ||
| "windows": { | ||
| "command": "python venv" | ||
| }, | ||
| "group": "Setup", | ||
| "presentation": { | ||
| "reveal": "always", | ||
| "panel": "new" | ||
| } | ||
| }, | ||
| { | ||
| "label": "Setup step 2: python requirements", | ||
| "type": "shell", | ||
| "command": "pip3 install -r requirements.txt", | ||
| "windows": { | ||
| "command": "python requirements" | ||
| }, | ||
| "group": "Setup", | ||
| "presentation": { | ||
| "reveal": "always", | ||
| "panel": "new" | ||
| } | ||
| } | ||
| ] | ||
| } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.