[DO-1390] Add critical services, default VM, network and hardware (!18)

DO-1390

Co-authored-by: denis.patrakeev <denis.patrakeev@avroid.tech>
Reviewed-on: https://git.avroid.tech/DevOps/secrets/pulls/18
This commit is contained in:
Denis Patrakeev
2024-12-28 19:55:11 +03:00
parent 7a8a4bb823
commit 0dd219a068
60 changed files with 3764 additions and 29 deletions

25
.gitleaks.toml Normal file
View File

@@ -0,0 +1,25 @@
title = "gitleaks config"
[extend]
# useDefault will extend the base configuration with the default gitleaks config:
# https://github.com/zricethezav/gitleaks/blob/master/config/gitleaks.toml
useDefault = true
[allowlist]
description = "global allow lists"
paths = [
# Defaults from example
'''gitleaks.toml''',
'''(.*?)(jpg|gif|doc|docx|zip|xls|pdf|bin|svg|socket|vsidx|v2|suo|wsuo|.dll|pdb|exe)$''',
'''(go.mod|go.sum)$''',
'''gradle.lockfile''',
'''node_modules''',
'''package-lock.json''',
'''yarn.lock''',
'''pnpm-lock.yaml''',
'''Database.refactorlog''',
'''vendor''',
# Custom
'''files/jenkins/plugins.txt''',
]