-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDakSqlKit.psd1
More file actions
25 lines (25 loc) · 1.06 KB
/
Copy pathDakSqlKit.psd1
File metadata and controls
25 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@{
ModuleVersion = '1.0.0'
GUID = 'c4f7e2a1-8b3d-4e9f-a6c0-2d5f8b1e3a70'
Author = 'Eric Ritzie'
CompanyName = 'Personal'
Copyright = '(c) 2026 Eric Ritzie. MIT License.'
Description = 'SQL Server security audit toolkit covering CIS, SOX, STIG, PCI-DSS, and SOC 2. Built on dbatools conventions — pipeline-friendly objects with Pass/Fail/Warning status and remediation guidance.'
PowerShellVersion = '5.1'
RootModule = 'DakSqlKit.psm1'
FunctionsToExport = @(
'Invoke-DakAuditSuite',
'Test-DakCISBenchmark',
'Test-DakDbConfig',
'Test-DakPCIBenchmark',
'Test-DakSOC2Benchmark',
'Test-DakSOXBenchmark'
)
PrivateData = @{
PSData = @{
Tags = @('SQL', 'SQLServer', 'Security', 'CIS', 'SOX', 'STIG', 'PCI', 'SOC2', 'dbatools', 'Audit', 'Compliance')
ProjectUri = 'https://github.com/eritzie/DakSqlKit'
LicenseUri = 'https://github.com/eritzie/DakSqlKit/blob/main/LICENSE'
}
}
}