Examples/Resources/PlannerPlan/1-NewPlannerPlan.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<#
This example creates a new Plan in Planner. #> Configuration Example { Import-DscResource -ModuleName Microsoft365DSC node localhost { PlannerPlan ContosoPlan { Title = "Contoso Plan" OwnerGroup = "Contoso Group" Ensure = "Present" ApplicationId = "12345-12345-12345-12345-12345" TenantId = "12345-12345-12345-12345-12345" CertificateThumbprint = "1234567890" } } } |