Examples/Resources/AADIdentityGovernanceLifecycleWorkflowCustomTaskExtension/2-Update.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()] [System.String] $ApplicationId, [Parameter()] [System.String] $TenantId, [Parameter()] [System.String] $CertificateThumbprint ) Import-DscResource -ModuleName Microsoft365DSC node localhost { AADIdentityGovernanceLifecycleWorkflowCustomTaskExtension "AADIdentityGovernanceLifecycleWorkflowCustomTaskExtension-My Custom" { ApplicationId = $ApplicationId; CertificateThumbprint = $CertificateThumbprint; CallbackConfiguration = MSFT_AADIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCallbackConfiguration{ TimeoutDuration = 'PT34M' AuthorizedApps = @('M365DSC') }; ClientConfiguration = MSFT_AADIdentityGovernanceLifecycleWorkflowCustomTaskExtensionClientConfiguration{ MaximumRetries = 1 TimeoutInMilliseconds = 1000 }; Description = "My Drifted Description"; # Drift DisplayName = "My Custom Extension"; EndpointConfiguration = MSFT_AADIdentityGovernanceLifecycleWorkflowCustomTaskExtensionEndpointConfiguration{ SubscriptionId = '63e62ab2-fd92-46ce-a393-2cb338039cc7' logicAppWorkflowName = 'MyTestApp' resourceGroupName = 'TestRG' url = 'https://prod-35.eastus.logic.azure.com:443/workflows/xxxxxxxxxxx/triggers/manual/paths/invoke?api-version=2016-10-01' }; Ensure = "Present"; TenantId = $TenantId; } } } |