-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sigma2Sentinel.psd1
42 lines (30 loc) · 1.18 KB
/
Sigma2Sentinel.psd1
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@{
# Script module or binary module file associated with this manifest.
RootModule = 'Sigma2Sentinel.psm1'
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()
# Version number of this module.
ModuleVersion = '1.2.0'
# ID used to uniquely identify this module
GUID = '7bcfd6aa-172f-479f-be46-59fd3a9e35e3'
# Author of this module
Author = 'Jeremy Hagan'
# Company or vendor of this module
CompanyName = 'Jeremy Hagan'
# Description of the functionality provided by this module
Description = 'This module imports sigma rules into Sentinel. Sigma is a generic signature format for SIEM systems.'
# Functions to export from this module
FunctionsToExport = @(
'Set-AzSentinelContentTemplateFromSigmaRule',
'Remove-AzSentinelContentTemplate'
)
# Cmdlets to export from this module
CmdletsToExport = @()
# Variables to export from this module
VariablesToExport = @()
# Aliases to export from this module
AliasesToExport = @()
# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{
}
}