Examples/Resources/PPTenantIsolationSettings/2-ConfigurePPTenantIsolationSettings.ps1
<#
This example sets Power Platform tenant isolation settings. #> Configuration Example { param ( [Parameter(Mandatory = $true)] [PSCredential] $credsGlobalAdmin ) Import-DscResource -ModuleName Microsoft365DSC node localhost { PPTenantIsolationSettings 'PowerPlatformTenantSettings' { IsSingleInstance = 'Yes' Enabled = $true RulesToInclude = @( MSFT_PPTenantRule { TenantName = 'contoso.onmicrosoft.com' Direction = 'Inbound' } ) RulesToExclude = @( MSFT_PPTenantRule { TenantName = 'fabrikam.onmicrosoft.com' Direction = 'Both' } ) Credential = $credsGlobalAdmin } } } |