Examples/Resources/SPOSite/1-CreateNewSPOSite.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(Mandatory = $true)]
        [PSCredential]
        $credsGlobalAdmin
    )
    Import-DscResource -ModuleName Microsoft365DSC

    node localhost
    {
        SPOSite DemoSite
        {
            Url                                         = "https://contoso.sharepoint.com/sites/testsite1"
            StorageMaximumLevel                         = 26214400
            LocaleId                                    = 1033
            Template                                    = "STS#3"
            GlobalAdminAccount                          = $credsGlobalAdmin
            Owner                                       = "admin@contoso.onmicrosoft.com"
            Title                                       = "TestSite"
            TimeZoneId                                  = 13
            Ensure                                      = "Present"
            StorageWarningLevel                         = 25574400
            SharingCapability                           = "Disabled"
            CommentsOnSitePagesDisabled                 = $false
            DisableAppViews                             = "NotDisabled"
            DisableCompanyWideSharingLinks              = "NotDisabled"
            DisableFlows                                = $false
            DefaultSharingLinkType                      = "None"
            DefaultLinkPermission                       = "None"
        }
    }
}