diff --git a/eng/common/TestResources/New-TestResources.ps1 b/eng/common/TestResources/New-TestResources.ps1 index 2c1308505954..5ea7fcbc16f8 100644 --- a/eng/common/TestResources/New-TestResources.ps1 +++ b/eng/common/TestResources/New-TestResources.ps1 @@ -527,6 +527,8 @@ try { if ($CI -and $Environment -eq 'AzureCloud' -and $env:PoolSubnet) { $templateParameters.Add('azsdkPipelineSubnetList', @($env:PoolSubnet)) } + # Some arm/bicep templates may want to change deployment settings (e.g. local auth) in sandboxed TME tenants + $templateParameters.Add('supportsSafeSecretStandard', ($context.Tenant.Name -like '*TME*')) $defaultCloudParameters = LoadCloudConfig $Environment MergeHashes $defaultCloudParameters $(Get-Variable templateParameters)