Skip to content

Commit 3f8b32d

Browse files
Merge pull request #6492 from microsoft/Dev
Release 1.25.903.2
2 parents 7bc456a + 1171d00 commit 3f8b32d

File tree

575 files changed

+3266
-1415
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+3266
-1415
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change log for Microsoft365DSC
22

3+
# 1.25.903.2
4+
5+
* AADEnrichedAuditLogs
6+
* DEPRECATED resource.
7+
* AADServicePrincipal
8+
* Change in logic to evaluate instances in Test-TargetResource when
9+
multiple instances exist with the same display name.
10+
* IntuneWindowsBackupForOrganizationConfiguration
11+
* Initial release.
12+
* MISC
13+
* Code cleanup across all EXO, Commerce, Defender and Fabric resources.
14+
* DEPENDENCIES
15+
* Update ReverseDSC to version 2.0.0.30.
16+
317
# 1.25.903.1
418

519
* AADAccessReviewDefinition

Modules/Microsoft365DSC/DSCResources/MSFT_AADAccessReviewDefinition/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,9 @@
3232
"requiredModules": [
3333
"Microsoft.Graph.Authentication",
3434
"Microsoft.Graph.Beta.Identity.Governance"
35+
],
36+
"supportedEnvironments": [
37+
"Global",
38+
"USGov"
3539
]
3640
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADAccessReviewPolicy/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,9 @@
3636
"requiredModules": [
3737
"Microsoft.Graph.Authentication",
3838
"Microsoft.Graph.Beta.Identity.SignIns"
39+
],
40+
"supportedEnvironments": [
41+
"Global",
42+
"USGov"
3943
]
4044
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADActivityBasedTimeoutPolicy/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,9 @@
3232
"requiredModules": [
3333
"Microsoft.Graph.Authentication",
3434
"Microsoft.Graph.Beta.Identity.SignIns"
35+
],
36+
"supportedEnvironments": [
37+
"Global",
38+
"USGov"
3539
]
3640
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADAdminConsentRequestPolicy/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,9 @@
4040
"Microsoft.Graph.Groups",
4141
"Microsoft.Graph.Users",
4242
"MSCloudLoginAssistant"
43+
],
44+
"supportedEnvironments": [
45+
"Global",
46+
"USGov"
4347
]
4448
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADAdministrativeUnit/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,9 @@
8080
"Microsoft.Graph.Identity.DirectoryManagement",
8181
"Microsoft.Graph.Users",
8282
"MSCloudLoginAssistant"
83+
],
84+
"supportedEnvironments": [
85+
"Global",
86+
"USGov"
8387
]
8488
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADAgreement/MSFT_AADAgreement.psm1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,10 @@ function Export-TargetResource
479479
{
480480
Write-M365DSCHost -Message $Global:M365DSCEmojiGreenCheckmark -CommitWrite
481481
}
482+
else
483+
{
484+
Write-M365DSCHost -Message "`r`n" -DeferWrite
485+
}
482486

483487
foreach ($config in $Script:exportedInstances)
484488
{
Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
11
{
2-
"resourceName": "AADAgreement",
3-
"description": "This resource configures Azure AD Terms of Use Agreements in Entra ID.",
4-
"permissions": {
5-
"graph": {
6-
"delegated": {
7-
"read": [
8-
{
9-
"name": "Agreement.Read.All"
10-
}
11-
],
12-
"update": [
13-
{
14-
"name": "Agreement.ReadWrite.All"
15-
}
16-
]
17-
},
18-
"application": {
19-
"read": [
20-
{
21-
"name": "Agreement.Read.All"
22-
}
23-
],
24-
"update": [
25-
{
26-
"name": "Agreement.ReadWrite.All"
27-
}
28-
]
29-
}
30-
}
2+
"resourceName": "AADAgreement",
3+
"description": "This resource configures Azure AD Terms of Use Agreements in Entra ID.",
4+
"permissions": {
5+
"graph": {
6+
"delegated": {
7+
"read": [
8+
{
9+
"name": "Agreement.Read.All"
10+
}
11+
],
12+
"update": [
13+
{
14+
"name": "Agreement.ReadWrite.All"
15+
}
16+
]
17+
},
18+
"application": {
19+
"read": [
20+
{
21+
"name": "Agreement.Read.All"
22+
}
23+
],
24+
"update": [
25+
{
26+
"name": "Agreement.ReadWrite.All"
27+
}
28+
]
29+
}
3130
}
32-
}
31+
},
32+
"supportedEnvironments": [
33+
"Global",
34+
"USGov"
35+
]
36+
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADAppManagementPolicy/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,9 @@
4040
"requiredModules": [
4141
"Microsoft.Graph.Authentication",
4242
"Microsoft.Graph.Beta.Identity.SignIns"
43+
],
44+
"supportedEnvironments": [
45+
"Global",
46+
"USGov"
4347
]
4448
}

Modules/Microsoft365DSC/DSCResources/MSFT_AADApplication/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,9 @@
4848
"Microsoft.Graph.Beta.Identity.DirectoryManagement",
4949
"Microsoft.Graph.Users",
5050
"MSCloudLoginAssistant"
51+
],
52+
"supportedEnvironments": [
53+
"Global",
54+
"USGov"
5155
]
5256
}

0 commit comments

Comments
 (0)