-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIdLE.Core.psd1
More file actions
28 lines (26 loc) · 1.12 KB
/
IdLE.Core.psd1
File metadata and controls
28 lines (26 loc) · 1.12 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
26
27
28
@{
RootModule = 'IdLE.Core.psm1'
ModuleVersion = '0.7.2'
GUID = 'c6232cd4-6fe9-4c37-a87b-eed8ce7e3517'
Author = 'Matthias Fleschuetz'
Copyright = '(c) Matthias Fleschuetz. All rights reserved.'
Description = 'IdLE Core engine: domain model, workflow loading/validation, plan builder and execution pipeline.'
PowerShellVersion = '7.0'
FunctionsToExport = @(
'New-IdleLifecycleRequestObject',
'Test-IdleWorkflowDefinitionObject',
'New-IdlePlanObject',
'Invoke-IdlePlanObject',
'Export-IdlePlanObject'
)
CmdletsToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @('IdentityLifecycleEngine', 'IdLE', 'Identity', 'Lifecycle', 'Automation', 'IdentityManagement', 'JML', 'Onboarding', 'Offboarding', 'AccountManagement')
LicenseUri = 'https://www.apache.org/licenses/LICENSE-2.0'
ProjectUri = 'https://github.com/blindzero/IdentityLifecycleEngine'
ContactEmail = '13959569+blindzero@users.noreply.github.com'
}
}
}