Fabian Wohlschläger
Fabian Wohlschläger
- Modules to merge: - Policy.Utils.psm1 - Rest.Utils.psm1 - Test.Utils.psm1 - Policy path should be a parameter for Initialize-AzPolicyTest - Align naming AzPolicyTest vs. New-PolicyDefinition - Test context should be...
Azure Login should be: ''' $password = ConvertTo-SecureString $env:AZURE_SUBSCRIPTION_CLIENT_SECRET -AsPlainText -Force $credential = New-Object System.Management.Automation.PSCredential($env:AZURE_SUBSCRIPTION_CLIENT_ID, $password) Connect-AzAccount -Subscription $env:AZURE_SUBSCRIPTION_ID -Tenant $env:AZURE_SUBSCRIPTION_TENANT_ID -ServicePrincipal -Credential $credential -Scope CurrentUser > $null ''' Why?`...
- See [here](https://pester.dev/docs/usage/data-driven-tests#providing-external-data-to-tests)
### Description Is there an equivalent to 'az login --allow-no-subscriptions' in Azure PowerShell`s Connect-AzAccount? ### Script or Debug output _No response_ ### Environment data _No response_ ### Module versions _No...
## Description of the new feature It would be good if users can customize both the HTTP timeout and retries. Both seems to be fixed at the moment. ## Proposed...