Examples/Resources/AADApplication/1-Create.ps1
<#
This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline. #> Configuration Example { param( [Parameter()] [System.String] $ApplicationId, [Parameter()] [System.String] $TenantId, [Parameter()] [System.String] $CertificateThumbprint ) Import-DscResource -ModuleName Microsoft365DSC node localhost { AADApplication 'AADApp1' { DisplayName = "AppDisplayName" AvailableToOtherTenants = $false Description = "Application Description" GroupMembershipClaims = "None" Homepage = "https://$TenantId" IdentifierUris = "https://$TenantId" KnownClientApplications = "" LogoutURL = "https://$TenantId/logout" PublicClient = $false ReplyURLs = "https://$TenantId" Permissions = @( MSFT_AADApplicationPermission { Name = 'User.Read' Type = 'Delegated' SourceAPI = 'Microsoft Graph' AdminConsentGranted = $false } MSFT_AADApplicationPermission { Name = 'User.ReadWrite.All' Type = 'Delegated' SourceAPI = 'Microsoft Graph' AdminConsentGranted = $True } MSFT_AADApplicationPermission { Name = 'User.Read.All' Type = 'AppOnly' SourceAPI = 'Microsoft Graph' AdminConsentGranted = $True } ) Ensure = "Present" ApplicationId = $ApplicationId TenantId = $TenantId CertificateThumbprint = $CertificateThumbprint } } } |