Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/unified-devsecops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,18 @@ jobs:
with:
fetch-depth: 0

- name: Run Gitleaks
uses: gitleaks/gitleaks-action@v2
- name: Install Gitleaks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_VERSION: 8.24.2
run: |
curl -sSfL "https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz" \
| tar -xz
mkdir -p "$HOME/bin"
mv gitleaks "$HOME/bin/gitleaks"
echo "$HOME/bin" >> "$GITHUB_PATH"

- name: Run Gitleaks
run: gitleaks git --redact --verbose --exit-code 1 .

dependency-audit:
name: Dependency Audit
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,11 +483,8 @@ Outputs:
5. Use Terraform plans to structure implementation and identify missing query mappings.
6. Translate source queries into real Datadog telemetry before applying Terraform.

## Publication Notes
## Access and Use

This repo is close to public-ready from a content perspective, but two publication decisions still remain:
- decide whether to publish example fixtures or keep users responsible for supplying their own exports
This is a private repository. Access is restricted to authorized team members. Do not share, redistribute, or republish any part of this codebase outside of authorized channels.

## License Status

No license file has been added. Unless and until a license is added, this repository should be treated as published source code without an open-source license grant.
All rights reserved.
Loading