-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into move-announcment
- Loading branch information
Showing
10 changed files
with
1,841 additions
and
35 deletions.
There are no files selected for viewing
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,10 @@ | ||
# Arista Secret Scanner allow list | ||
|
||
version: v1.0 | ||
allowed_secrets: | ||
- secret_pattern: "https://ansible:ansible@192.168.0.2" | ||
category: FALSE_POSITIVE | ||
reason: Used as example in documentation | ||
- secret_pattern: "https://ansible:ansible@192.168.0.17" | ||
category: FALSE_POSITIVE | ||
reason: Used as example in documentation |
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 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,15 @@ | ||
# Secret-scanner workflow from Arista Networks. | ||
on: | ||
pull_request: | ||
types: [synchronize] | ||
push: | ||
branches: | ||
- main | ||
name: Secret Scanner (go/secret-scanner) | ||
jobs: | ||
scan_secret: | ||
name: Scan incoming changes | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run scanner | ||
uses: aristanetworks/secret-scanner-service@main |
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,18 @@ | ||
# Path to sources | ||
sonar.sources=anta/,asynceapi/ | ||
#sonar.exclusions= | ||
#sonar.inclusions= | ||
|
||
# Path to tests | ||
sonar.tests=tests/ | ||
#sonar.test.exclusions= | ||
#sonar.test.inclusions= | ||
|
||
# Source encoding | ||
#sonar.sourceEncoding=UTF-8 | ||
|
||
# Python version (for python projects only) | ||
sonar.python.version=3.9,3.10,3.11,3.12 | ||
|
||
# Exclusions for copy-paste detection | ||
#sonar.cpd.exclusions=, |
Oops, something went wrong.