Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrola committed Oct 30, 2024
1 parent edc9bb6 commit a1355fa
Showing 1 changed file with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<#
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
{
AzureVerifiedIdFaceCheck "AzureVerifiedIdFaceCheck"
{
ApplicationId = $ApplicationId;
CertificateThumbprint = $CertificateThumbprint;
Ensure = "Present";
FaceCheckEnabled = $True;
ResourceGroupName = "website";
SubscriptionId = "2dbaf4c4-78f8-4ac9-8188-536d921cf690";
TenantId = $TenantId;
VerifiedIdAuthorityId = "30961e04-9c35-42db-b80f-c1b6515eb4b2";
VerifiedIdAuthorityLocation = "westus2";
}
}
}

0 comments on commit a1355fa

Please sign in to comment.