From 3f558de22aafa8f2e1cb948964c5c5f2f2636926 Mon Sep 17 00:00:00 2001 From: David Alimov <167968982+David-Alimov-KPCS@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:50:32 +0100 Subject: [PATCH] Update AzGovVizParallel.ps1 fixed a message line 29634 update message with a missing space between words starts with --- pwsh/AzGovVizParallel.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwsh/AzGovVizParallel.ps1 b/pwsh/AzGovVizParallel.ps1 index c35166b9..269570ed 100644 --- a/pwsh/AzGovVizParallel.ps1 +++ b/pwsh/AzGovVizParallel.ps1 @@ -29631,7 +29631,7 @@ function runInfo { $script:paramsUsed += 'SubscriptionQuotaIdWhitelist: false ' } else { - Write-Host ' Subscription Whitelist enabled. Azure Governance Visualizer will only process Subscriptions where QuotaId startswith one of the following strings:' -ForegroundColor Green + Write-Host ' Subscription Whitelist enabled. Azure Governance Visualizer will only process Subscriptions where QuotaId starts with one of the following strings:' -ForegroundColor Green foreach ($quotaIdFromSubscriptionQuotaIdWhitelist in $SubscriptionQuotaIdWhitelist) { Write-Host " - $($quotaIdFromSubscriptionQuotaIdWhitelist)" -ForegroundColor Green }