Skip to content

Commit

Permalink
Updated {Update} AAD Integration Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Oct 10, 2024
1 parent 1d0c5d4 commit 714f0b7
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,21 @@
CertificateThumbprint = $CertificateThumbprint
Ensure = "Present";
}
AADCustomSecurityAttributeDefinition 'AADCustomSecurityAttributeDefinition-ShoeSize'
{
ApplicationId = $ApplicationId;
AttributeSet = "TestAttributeSet";
CertificateThumbprint = $CertificateThumbprint;
Ensure = "Present";
IsCollection = $False;
IsSearchable = $True;
Name = "ShoeSize";
Status = "Available";
TenantId = $TenantId;
Type = "String";
UsePreDefinedValuesOnly = $False;
Description = "What size of shoe is the person wearing? Drifted" # Drift
}
AADDeviceRegistrationPolicy 'MyDeviceRegistrationPolicy'
{
ApplicationId = $ApplicationId;
Expand All @@ -658,6 +673,21 @@
TenantId = $TenantId;
UserDeviceQuota = 50;
}
AADDomain 'AADDomain-Contoso'
{
ApplicationId = $ApplicationId;
AuthenticationType = "Managed";
CertificateThumbprint = $CertificateThumbprint;
Ensure = "Present";
Id = "contoso.com";
IsAdminManaged = $True;
IsDefault = $True;
IsRoot = $True;
IsVerified = $False; #Drift
PasswordNotificationWindowInDays = 14;
PasswordValidityPeriodInDays = 2147483647;
TenantId = $TenantId;
}
AADEntitlementManagementAccessPackage 'myAccessPackage'
{
AccessPackagesIncompatibleWith = @();
Expand Down

0 comments on commit 714f0b7

Please sign in to comment.