-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIdLE.psd1
More file actions
37 lines (33 loc) · 1.39 KB
/
IdLE.psd1
File metadata and controls
37 lines (33 loc) · 1.39 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
29
30
31
32
33
34
35
36
37
@{
RootModule = 'IdLE.psm1'
ModuleVersion = '0.7.2'
GUID = 'e2f1c3a4-7b9d-4f2a-8c3e-1d5b6a7c8e9f'
Author = 'Matthias Fleschuetz'
Copyright = '(c) Matthias Fleschuetz. All rights reserved.'
Description = 'IdentityLifecycleEngine (IdLE) meta-module. Imports IdLE.Core and optional packs.'
PowerShellVersion = '7.0'
NestedModules = @(
'..\IdLE.Core\IdLE.Core.psd1',
'..\IdLE.Steps.Common\IdLE.Steps.Common.psd1'
)
FunctionsToExport = @(
'Test-IdleWorkflow',
'New-IdleLifecycleRequest',
'New-IdlePlan',
'Invoke-IdlePlan',
'Export-IdlePlan'
)
CmdletsToExport = @()
AliasesToExport = @()
# NOTE: IdLE depends on IdLE.Core.
# We intentionally do not use 'RequiredModules' to keep repo-clone imports working
# when modules are imported via relative paths (IdLE.Core may not be on PSModulePath).
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'
}
}
}