-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from NikCharlebois/Added-Additional-Integrati…
…on-Tests Added SPOSite Classic test
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,6 +94,28 @@ Configuration Master | |
DependsOn = "[O365User]JohnSmith" | ||
} | ||
|
||
SPOSite ClassicSite | ||
{ | ||
Title = "Classic Site" | ||
Url = "https://o365dsc.sharepoint.com/sites/Classic" | ||
Owner = "[email protected]" | ||
Template = "STS#0" | ||
CentralAdminUrl = "https://o365dsc-admin.sharepoint.com" | ||
GlobalAdminAccount = $GlobalAdmin | ||
Ensure = "Present" | ||
} | ||
|
||
SPOSite ModernSite | ||
{ | ||
Title = "Modern Site" | ||
Url = "https://o365dsc.sharepoint.com/sites/Modern" | ||
Owner = "[email protected]" | ||
Template = "STS#3" | ||
CentralAdminUrl = "https://o365dsc-admin.sharepoint.com" | ||
GlobalAdminAccount = $GlobalAdmin | ||
Ensure = "Present" | ||
} | ||
|
||
TeamsTeam TeamAlpha | ||
{ | ||
DisplayName = "Alpha Team" | ||
|