-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathConditionalAccessIQ.psd1
More file actions
36 lines (30 loc) · 1.29 KB
/
Copy pathConditionalAccessIQ.psd1
File metadata and controls
36 lines (30 loc) · 1.29 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
@{
# Module metadata
ModuleVersion = "0.1.0"
GUID = "ae965c65-34a1-4e08-b34a-95dd363eaeb5"
Author = "Gabriel Delaney - gdelaney@phzconsulting.com | https://github.com/thetolkienblackguy"
CompanyName = "Phoenix Horizons LLC"
Copyright = "(c) Phoenix Horizons LLC. All rights reserved."
Description = "Module for tracking changes and monitoring Conditional Access Policies in Microsoft Entra Id"
# Supported PowerShell editions
PowerShellVersion = "5.1"
CompatiblePSEditions = @("Desktop", "Core")
# Dependencies
RequiredModules = @("Microsoft.Graph.Authentication")
# Module file paths
RootModule = "ConditionalAccessIQ.psm1"
FunctionsToExport = @(
"Invoke-CAIQ", "Send-CAIQMailMessage", "Invoke-CAIQBreakGlassAssessment"
)
CmdletsToExport = @()
VariablesToExport = "*"
AliasesToExport = "*"
# Private Data
PrivateData = @{
PSData = @{
Tags = @("ConditionalAccess", "EntraID", "AzureAD", "VersionControl")
LicenseUri = "https://github.com/thetolkienblackguy/ConditionalAccessIQ/blob/main/LICENSE"
ProjectUri = "https://github.com/thetolkienblackguy/ConditionalAccessIQ"
}
}
}