Skip to content

Commit

Permalink
Addressed comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kajalp1079 committed Oct 25, 2024
1 parent b2d3e1e commit 837499f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# IntuneMobileAppsMacOSLobApp
# IntuneMobileThreatDefenseConnector

## Description

This resouce configures a connection to Mobile Threat Defense partner.
This resource configures a connection to Mobile Threat Defense partner.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"resourceName": "IntuneMobileThreatDefenseConnector",
"description": "This resouce configures a connection to Mobile Threat Defense partner.",
"description": "This resource configures a connection to Mobile Threat Defense partner.",
"permissions": {
"graph": {
"delegated": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ Configuration Example
WindowsDeviceBlockedOnMissingPartnerData = $False;
WindowsEnabled = $False;
Ensure = "Present";
ApplicationId = $ApplicationId;
TenantId = $TenantId;
CertificateThumbprint = $CertificateThumbprint;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ Configuration Example
[System.String]
$CertificateThumbprint
)

Import-DscResource -ModuleName Microsoft365DSC

node localhost
{
IntuneMobileThreatDefenseConnector "IntuneMobileThreatDefenseConnector-Microsoft Defender for Endpoint"
Expand All @@ -41,6 +43,9 @@ Configuration Example
WindowsDeviceBlockedOnMissingPartnerData = $False;
WindowsEnabled = $False;
Ensure = "Present";
ApplicationId = $ApplicationId;
TenantId = $TenantId;
CertificateThumbprint = $CertificateThumbprint;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ Configuration Example
[System.String]
$CertificateThumbprint
)

Import-DscResource -ModuleName Microsoft365DSC

node localhost
{
IntuneMobileThreatDefenseConnector "IntuneMobileThreatDefenseConnector-Microsoft Defender for Endpoint"
Expand All @@ -41,6 +43,9 @@ Configuration Example
WindowsDeviceBlockedOnMissingPartnerData = $False;
WindowsEnabled = $False;
Ensure = "Absent";
ApplicationId = $ApplicationId;
TenantId = $TenantId;
CertificateThumbprint = $CertificateThumbprint;
}
}
}

0 comments on commit 837499f

Please sign in to comment.